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

Unified Diff: Source/platform/graphics/GraphicsLayer.h

Issue 138453004: Pinch/Zoom Infrastructure & Plumbing CL (Prequel) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Initial plumbing for Blink side of PZ Infrastructure. Created 6 years, 11 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: Source/platform/graphics/GraphicsLayer.h
diff --git a/Source/platform/graphics/GraphicsLayer.h b/Source/platform/graphics/GraphicsLayer.h
index 8104292526ba4d7c8035fdfd14e93095cf29a10a..5d01af82932e944af0570c657643c12886841d9d 100644
--- a/Source/platform/graphics/GraphicsLayer.h
+++ b/Source/platform/graphics/GraphicsLayer.h
@@ -302,14 +302,14 @@ public:
// WebLayerScrollClient implementation.
virtual void didScroll() OVERRIDE;
+ // Exposed for use in PinchViewports.cpp.
enne (OOO) 2014/01/14 22:43:55 comment nit: I think this is a little over-specifi
jamesr 2014/01/14 22:48:58 yeah, it doesn't make sense for a comment in /plat
wjmaclean 2014/01/14 23:55:29 Based on James' other comment, I have removed this
+ virtual blink::WebLayer* contentsLayer() const { return m_contentsLayer; }
+
protected:
explicit GraphicsLayer(GraphicsLayerClient*);
// GraphicsLayerFactoryChromium that wants to create a GraphicsLayer need to be friends.
friend class blink::GraphicsLayerFactoryChromium;
- // Exposed for tests.
- virtual blink::WebLayer* contentsLayer() const { return m_contentsLayer; }
-
private:
// Adds a child without calling updateChildList(), so that adding children
// can be batched before updating.

Powered by Google App Engine
This is Rietveld 408576698