~aacid/unity8/moreAsyncAudioCard

« back to all changes in this revision

Viewing changes to tests/mocks/Unity/Application/ApplicationInfo.h

  • Committer: Albert Astals Cid
  • Date: 2016-03-10 08:32:16 UTC
  • mfrom: (2136.2.83 unity8)
  • Revision ID: albert.astals@canonical.com-20160310083216-8nnplxl85qx13xd0
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2013-2015 Canonical, Ltd.
 
2
 * Copyright (C) 2013-2016 Canonical, Ltd.
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU General Public License as published by
95
95
    bool exemptFromLifecycle() const override;
96
96
    void setExemptFromLifecycle(bool) override;
97
97
 
 
98
    QSize initialSurfaceSize() const override;
 
99
    void setInitialSurfaceSize(const QSize &size) override;
98
100
public:
99
101
    void setSession(Session* session);
100
102
    Session* session() const { return m_session; }
129
131
    RequestedState m_requestedState;
130
132
    bool m_isTouchApp;
131
133
    bool m_exemptFromLifecycle;
 
134
    QSize m_initialSurfaceSize;
132
135
 
133
136
    bool m_manualSurfaceCreation;
134
137
};