| Index: cc/CCLayerTreeHostImpl.h
|
| diff --git a/cc/CCLayerTreeHostImpl.h b/cc/CCLayerTreeHostImpl.h
|
| index b4c30c9da5a2d48b3427c3d6a36751a846f4e462..c0f3c1c6740b4d1e80d83e2ea41a1b6c1eaf365b 100644
|
| --- a/cc/CCLayerTreeHostImpl.h
|
| +++ b/cc/CCLayerTreeHostImpl.h
|
| @@ -65,6 +65,9 @@ public:
|
| virtual void scheduleAnimation() OVERRIDE;
|
|
|
| struct FrameData : public CCRenderPassSink {
|
| + FrameData();
|
| + ~FrameData();
|
| +
|
| Vector<IntRect> occludingScreenSpaceRects;
|
| CCRenderPassList renderPasses;
|
| CCRenderPassIdHashMap renderPassesById;
|
| @@ -90,8 +93,8 @@ public:
|
| void didDrawAllLayers(const FrameData&);
|
|
|
| // CCRendererClient implementation
|
| - virtual const IntSize& deviceViewportSize() const OVERRIDE { return m_deviceViewportSize; }
|
| - virtual const CCLayerTreeSettings& settings() const OVERRIDE { return m_settings; }
|
| + virtual const IntSize& deviceViewportSize() const OVERRIDE;
|
| + virtual const CCLayerTreeSettings& settings() const OVERRIDE;
|
| virtual void didLoseContext() OVERRIDE;
|
| virtual void onSwapBuffersComplete() OVERRIDE;
|
| virtual void setFullRootLayerDamage() OVERRIDE;
|
|
|