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

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

Issue 2765053002: Avoid exposing cc::Layer tree to CompositorProxy (Closed)
Patch Set: Minor changes Created 3 years, 9 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/Source/core/dom/CompositorProxy.h
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxy.h b/third_party/WebKit/Source/core/dom/CompositorProxy.h
index 37efc8446b9c7ccaee8fc3a31b967010ae1fd374..785c26e57418d81e09926e8f3ce70bd8f64a1ca2 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxy.h
+++ b/third_party/WebKit/Source/core/dom/CompositorProxy.h
@@ -38,6 +38,7 @@ class CORE_EXPORT CompositorProxy final
DEFINE_INLINE_TRACE() {}
uint64_t elementId() const { return m_elementId; }
+ uint64_t proxyId() const { return m_proxyId; }
uint32_t compositorMutableProperties() const {
return m_compositorMutableProperties;
}
@@ -72,6 +73,7 @@ class CORE_EXPORT CompositorProxy final
void disconnectInternal();
const uint64_t m_elementId = 0;
+ const uint64_t m_proxyId = 0;
flackr 2017/04/03 17:09:19 Do we need proxyId? Can we not key off of elementI
smcgruer 2017/04/03 17:57:31 Is there not a N:1 relationship between Compositor
flackr 2017/04/11 17:51:36 At least there is in the current implementation wh
const uint32_t m_compositorMutableProperties = 0;
bool m_connected = true;

Powered by Google App Engine
This is Rietveld 408576698