| Index: third_party/WebKit/Source/web/CompositorProxyClientImpl.h
|
| diff --git a/third_party/WebKit/Source/web/CompositorProxyClientImpl.h b/third_party/WebKit/Source/web/CompositorProxyClientImpl.h
|
| index 767117edd37e7750ebb97832ab30f914d5746c9a..5c171063f7f60d426c8b49016194d1b031c7ee11 100644
|
| --- a/third_party/WebKit/Source/web/CompositorProxyClientImpl.h
|
| +++ b/third_party/WebKit/Source/web/CompositorProxyClientImpl.h
|
| @@ -6,6 +6,7 @@
|
| #define CompositorProxyClientImpl_h
|
|
|
| #include "core/dom/CompositorProxyClient.h"
|
| +#include "platform/heap/Handle.h"
|
| #include "wtf/Noncopyable.h"
|
|
|
| namespace blink {
|
| @@ -33,6 +34,8 @@ public:
|
| // CompositorProxyClient:
|
| void setGlobalScope(WorkerGlobalScope*) override;
|
| void requestAnimationFrame() override;
|
| + void registerCompositorProxy(CompositorProxy*) override;
|
| + void unregisterCompositorProxy(CompositorProxy*) override;
|
|
|
| private:
|
| bool executeAnimationFrameCallbacks(double monotonicTimeNow);
|
| @@ -41,6 +44,8 @@ private:
|
|
|
| Member<CompositorWorkerGlobalScope> m_globalScope;
|
| bool m_requestedAnimationFrameCallbacks;
|
| +
|
| + HeapHashSet<WeakMember<CompositorProxy>> m_proxies;
|
| };
|
|
|
| } // namespace blink
|
|
|