~cimi/unity8/preview-sharing-fix-broken-binding

« back to all changes in this revision

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

  • Committer: Pawel Stolowski
  • Date: 2015-12-15 15:10:16 UTC
  • mfrom: (2079.1.20 unity8)
  • Revision ID: pawel.stolowski@canonical.com-20151215151016-n136phkhmh0jo4ki
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    int surfaceHeight() const override;
63
63
    void setSurfaceHeight(int value) override;
64
64
 
 
65
    FillMode fillMode() const override { return m_fillMode; }
 
66
    void setFillMode(FillMode value) override;
 
67
 
65
68
    /////
66
69
    // For use in qml tests
67
70
 
107
110
    int m_touchPressCount;
108
111
    int m_touchReleaseCount;
109
112
 
 
113
    FillMode m_fillMode{Stretch};
 
114
 
110
115
    friend class SurfaceManager;
111
116
};
112
117