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

Unified Diff: third_party/WebKit/Source/web/CompositorMutatorImpl.h

Issue 1895873006: compositor-worker: Initialize CW machinery plumbing to compositor and fire CW rAF callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add big fat TODOs in scheduler code to implement proper idle task scheduling and ensure GC is runniā€¦ 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
Index: third_party/WebKit/Source/web/CompositorMutatorImpl.h
diff --git a/third_party/WebKit/Source/web/CompositorMutatorImpl.h b/third_party/WebKit/Source/web/CompositorMutatorImpl.h
new file mode 100644
index 0000000000000000000000000000000000000000..dc1affe6070183e71957fc10d240dd3ba2a02a6f
--- /dev/null
+++ b/third_party/WebKit/Source/web/CompositorMutatorImpl.h
@@ -0,0 +1,64 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CompositorMutatorImpl_h
+#define CompositorMutatorImpl_h
+
+#include "core/animation/CustomCompositorAnimationManager.h"
+#include "platform/graphics/CompositorMutator.h"
+#include "platform/heap/Handle.h"
+#include "platform/heap/HeapAllocator.h"
+#include "wtf/Noncopyable.h"
+#include "wtf/OwnPtr.h"
+#include "wtf/PassOwnPtr.h"
+
+namespace blink {
+
+class CompositorProxy;
+class CompositorProxyClientImpl;
+class CompositorWorkerGlobalScope;
+class CompositorMutatorClient;
+class WaitableEvent;
+
+// Fans out requests from the compositor to all of the registered ProxyClients which
+// can then mutate layers through their CompositorProxy interfaces. Requests for
+// animation frames are received from ProxyClients and sent to the compositor to
+// generate a new compositor frame.
+//
+// Should be accessed only on the compositor thread.
+class CompositorMutatorImpl final : public GarbageCollectedFinalized<CompositorMutatorImpl>, public CompositorMutator {
haraken 2016/05/06 02:45:51 Why do you need to make CompositorMutator a Garbag
flackr 2016/05/06 18:15:07 Jeremy pointed out that the interface doesn't real
+ WTF_MAKE_NONCOPYABLE(CompositorMutatorImpl);
+ USING_GARBAGE_COLLECTED_MIXIN(CompositorMutatorImpl);
+public:
+ static CompositorMutatorImpl* create();
+
+ DEFINE_INLINE_TRACE()
+ {
+ CompositorMutator::trace(visitor);
+ visitor->trace(m_proxyClients);
+ }
+
+ // CompositorMutator implementation.
+ bool mutate(double monotonicTimeNow) override;
+
+ void registerProxyClient(CompositorProxyClientImpl*);
+
+ void setNeedsMutate();
+
+ void setClient(CompositorMutatorClient* client) { m_client = client; }
+ CustomCompositorAnimationManager* animationManager() { return m_animationManager.get(); }
+
+private:
+ CompositorMutatorImpl();
+
+ using ProxyClients = HeapHashSet<WeakMember<CompositorProxyClientImpl>>;
+ ProxyClients m_proxyClients;
haraken 2016/05/06 02:45:51 I just want to confirm why you use WeakMembers, bu
flackr 2016/05/06 18:15:08 Yes. the LayerTreeHostImpl has one CompositorMutat
+
+ OwnPtr<CustomCompositorAnimationManager> m_animationManager;
+ CompositorMutatorClient* m_client;
+};
+
+} // namespace blink
+
+#endif // CompositorMutatorImpl_h

Powered by Google App Engine
This is Rietveld 408576698