Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1595)

Unified Diff: cc/CCLayerTreeHostImpl.h

Issue 10942040: Fix CC*Renderer and CC*LayerImpl to compile with Clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698