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

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

Issue 1922393002: CC Animation: Unify ElementId in Blink Compositor Worker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@player
Patch Set: Remove NextElementId. Created 4 years, 7 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 | « third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0282f171193afc6d4e5f35e5fc92858f55f77180..40ae9becf9523bdf54f806274ee32d8cf5f4e0e2 100644
--- a/third_party/WebKit/public/platform/WebLayer.h
+++ b/third_party/WebKit/public/platform/WebLayer.h
@@ -197,8 +197,9 @@ 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;
+ // TODO(loyso): These must be CompositorElementId instead of int.
+ virtual void setElementId(int) = 0;
+ virtual int elementId() const = 0;
virtual void setCompositorMutableProperties(uint32_t) = 0;
virtual uint32_t compositorMutableProperties() const = 0;
« no previous file with comments | « third_party/WebKit/Source/web/tests/CompositorWorkerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698