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

Unified Diff: public/platform/WebLayer.h

Issue 18473002: Add an API to report debugName in GraphicsLayer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix layout test Created 7 years, 4 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
« no previous file with comments | « Source/web/tests/ImageLayerChromiumTest.cpp ('k') | public/platform/WebLayerClient.h » ('j') | 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 8c6a92d9e7919c3f99cdfbc127b74ca4e8b202d9..0a277001ef80fa20ed9c91bc74d26dbf9df7a919 100644
--- a/public/platform/WebLayer.h
+++ b/public/platform/WebLayer.h
@@ -42,14 +42,13 @@ class SkImageFilter;
namespace WebKit {
class WebAnimationDelegate;
class WebFilterOperations;
+class WebLayerClient;
class WebLayerScrollClient;
struct WebFloatPoint;
struct WebFloatRect;
struct WebLayerPositionConstraint;
struct WebSize;
-class WebLayerImpl;
-
class WebLayer {
public:
virtual ~WebLayer() { }
@@ -135,8 +134,6 @@ public:
// (opacity, transforms), it may conflict and hide the background filters.
virtual void setBackgroundFilters(const WebFilterOperations&) = 0;
- virtual void setDebugName(WebString) = 0;
-
// Provides a bitfield that describe why this composited layer was created.
// FIXME: non-pure until the chromium-side implements this.
virtual void setCompositingReasons(WebCompositingReasons) { }
@@ -213,6 +210,8 @@ public:
// True if the layer is not part of a tree attached to a WebLayerTreeView.
virtual bool isOrphan() const = 0;
+
+ virtual void setWebLayerClient(WebLayerClient*) = 0;
};
} // namespace WebKit
« no previous file with comments | « Source/web/tests/ImageLayerChromiumTest.cpp ('k') | public/platform/WebLayerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698