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

Unified Diff: third_party/WebKit/public/platform/WebLayer.h

Issue 1973083002: Use element id's for animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated CompositorMutableStateTest. Created 4 years, 6 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: third_party/WebKit/public/platform/WebLayer.h
diff --git a/third_party/WebKit/public/platform/WebLayer.h b/third_party/WebKit/public/platform/WebLayer.h
index 7ce4091cdc0d60f5583f1d8bbb3d7ad0b356368c..82221415c16d2689f25a50a29fc8b364bee0dfc0 100644
--- a/third_party/WebKit/public/platform/WebLayer.h
+++ b/third_party/WebKit/public/platform/WebLayer.h
@@ -44,6 +44,7 @@ namespace cc {
class Layer;
class LayerClient;
class FilterOperations;
+struct ElementId;
}
namespace blink {
@@ -197,8 +198,8 @@ public:
virtual const cc::Layer* ccLayer() const = 0;
virtual cc::Layer* ccLayer() = 0;
- virtual void setElementId(uint64_t) = 0;
- virtual uint64_t elementId() const = 0;
+ virtual void setElementId(const cc::ElementId&) = 0;
+ virtual cc::ElementId elementId() const = 0;
virtual void setCompositorMutableProperties(uint32_t) = 0;
virtual uint32_t compositorMutableProperties() const = 0;

Powered by Google App Engine
This is Rietveld 408576698