| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CompositorMutatorImpl_h | 5 #ifndef CompositorMutatorImpl_h |
| 6 #define CompositorMutatorImpl_h | 6 #define CompositorMutatorImpl_h |
| 7 | 7 |
| 8 #include "core/animation/CustomCompositorAnimationManager.h" | 8 #include "core/animation/CustomCompositorAnimationManager.h" |
| 9 #include "platform/graphics/CompositorMutator.h" | 9 #include "platform/graphics/CompositorMutator.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "platform/heap/HeapAllocator.h" | 11 #include "platform/heap/HeapAllocator.h" |
| 12 #include "wtf/Noncopyable.h" | 12 #include "wtf/Noncopyable.h" |
| 13 #include <memory> | 13 #include <memory> |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class CompositorProxy; | 17 class CompositorProxy; |
| 18 class CompositorProxyClientImpl; | 18 class CompositorProxyClientImpl; |
| 19 class CompositorWorkerGlobalScope; | 19 class CompositorWorkerGlobalScope; |
| 20 class CompositorMutatorClient; | 20 class CompositorMutatorClient; |
| 21 | 21 |
| 22 // Fans out requests from the compositor to all of the registered ProxyClients w
hich | 22 // Fans out requests from the compositor to all of the registered ProxyClients |
| 23 // can then mutate layers through their CompositorProxy interfaces. Requests for | 23 // which can then mutate layers through their CompositorProxy interfaces. |
| 24 // animation frames are received from ProxyClients and sent to the compositor to | 24 // Requests for animation frames are received from ProxyClients and sent to the |
| 25 // generate a new compositor frame. | 25 // compositor to generate a new compositor frame. |
| 26 // | 26 // |
| 27 // Should be accessed only on the compositor thread. | 27 // Should be accessed only on the compositor thread. |
| 28 class CompositorMutatorImpl final : public CompositorMutator { | 28 class CompositorMutatorImpl final : public CompositorMutator { |
| 29 WTF_MAKE_NONCOPYABLE(CompositorMutatorImpl); | 29 WTF_MAKE_NONCOPYABLE(CompositorMutatorImpl); |
| 30 | 30 |
| 31 public: | 31 public: |
| 32 static std::unique_ptr<CompositorMutatorClient> createClient(); | 32 static std::unique_ptr<CompositorMutatorClient> createClient(); |
| 33 static CompositorMutatorImpl* create(); | 33 static CompositorMutatorImpl* create(); |
| 34 | 34 |
| 35 // CompositorMutator implementation. | 35 // CompositorMutator implementation. |
| (...skipping 17 matching lines...) Expand all Loading... |
| 53 HashSet<CrossThreadPersistent<CompositorProxyClientImpl>>; | 53 HashSet<CrossThreadPersistent<CompositorProxyClientImpl>>; |
| 54 ProxyClients m_proxyClients; | 54 ProxyClients m_proxyClients; |
| 55 | 55 |
| 56 std::unique_ptr<CustomCompositorAnimationManager> m_animationManager; | 56 std::unique_ptr<CustomCompositorAnimationManager> m_animationManager; |
| 57 CompositorMutatorClient* m_client; | 57 CompositorMutatorClient* m_client; |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace blink | 60 } // namespace blink |
| 61 | 61 |
| 62 #endif // CompositorMutatorImpl_h | 62 #endif // CompositorMutatorImpl_h |
| OLD | NEW |