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

Unified Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 1405993008: compositor-worker: plumb element id and mutable properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/WebMutable/WebCompositorMutable/g Created 5 years, 1 month 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/Source/core/dom/Element.h
diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
index b4b5cbbf086bb47984c4ae36cce8ae609a699e61..e0d4d36254fd838ed7840ee8d923d0b7162af02e 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -531,8 +531,10 @@ public:
void setTabIndex(int);
short tabIndex() const override;
- void incrementProxyCount();
- void decrementProxyCount();
+ bool hasCompositorProxy() const;
+ void incrementProxiedPropertyCounts(uint32_t mutableProperties);
chrishtr 2015/11/24 16:22:50 Please document what this is doing.
Ian Vollick 2015/11/25 18:28:45 Done.
+ void decrementProxiedPropertyCounts(uint32_t mutableProperties);
+ uint32_t mutableProperties() const;
DECLARE_VIRTUAL_TRACE();

Powered by Google App Engine
This is Rietveld 408576698