| Index: third_party/WebKit/Source/core/dom/CompositorProxy.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/CompositorProxy.cpp b/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
|
| index e715638b804f420fddba14fb52c421ec4cc444a1..dd64f2ad144e38f14fc9fd347ad24310de02faa9 100644
|
| --- a/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
|
| @@ -19,6 +19,9 @@
|
| #include <algorithm>
|
|
|
| namespace blink {
|
| +namespace {
|
| +uint64_t uniqueId = 0;
|
| +} // namespace
|
|
|
| static const struct {
|
| const char* name;
|
| @@ -135,6 +138,7 @@ CompositorProxy* CompositorProxy::create(ExecutionContext* context,
|
| CompositorProxy::CompositorProxy(uint64_t elementId,
|
| uint32_t compositorMutableProperties)
|
| : m_elementId(elementId),
|
| + m_proxyId(uniqueId++),
|
| m_compositorMutableProperties(compositorMutableProperties),
|
| m_client(nullptr) {
|
| DCHECK(m_compositorMutableProperties);
|
|
|