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

Unified Diff: public/platform/WebLayer.h

Issue 1238123004: Slimming Paint phase 2 compositing algorithm plumbing & skeleton display list API. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
« public/platform/WebDisplayList.h ('K') | « public/platform/WebDisplayList.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebLayer.h
diff --git a/public/platform/WebLayer.h b/public/platform/WebLayer.h
index 60bd11970b22a112cea48c9db6b028b0745a1db0..c533863806add0277428080c4d2232aeb9798009 100644
--- a/public/platform/WebLayer.h
+++ b/public/platform/WebLayer.h
@@ -30,6 +30,8 @@
#include "WebColor.h"
#include "WebCommon.h"
#include "WebCompositorAnimation.h"
+#include "WebDisplayItemTransformTree.h"
+#include "WebDisplayList.h"
#include "WebDoublePoint.h"
#include "WebFloatPoint3D.h"
#include "WebPoint.h"
@@ -231,6 +233,11 @@ public:
virtual bool isOrphan() const = 0;
virtual void setWebLayerClient(WebLayerClient*) = 0;
+
+ virtual const WebDisplayList* displayList() { return 0; };
+
+ // This is only set on a root graphics layer.
+ virtual const WebDisplayItemTransformTree* transformTree() { return 0; };
};
} // namespace blink
« public/platform/WebDisplayList.h ('K') | « public/platform/WebDisplayList.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698