Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CompositorProxyClientFactoryImpl_h | |
| 6 #define CompositorProxyClientFactoryImpl_h | |
| 7 | |
| 8 #include "core/dom/CompositorProxyClientFactory.h" | |
| 9 #include "platform/heap/Handle.h" | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 class CompositorMutatorImpl; | |
| 14 | |
| 15 class CompositorProxyClientFactoryImpl final | |
| 16 : public GarbageCollectedFinalized<CompositorProxyClientFactoryImpl>, | |
| 17 public CompositorProxyClientFactory { | |
| 18 public: | |
| 19 CompositorProxyClientFactoryImpl(CompositorMutatorImpl*); | |
|
nhiroki
2016/11/24 06:59:00
explicit
majidvp
2016/11/28 14:43:21
Done.
| |
| 20 CompositorProxyClient* create(CompositorProxyClient::Type) override; | |
| 21 | |
| 22 DEFINE_INLINE_TRACE() {} | |
| 23 | |
| 24 private: | |
| 25 CrossThreadPersistent<CompositorMutatorImpl> m_mutator; | |
| 26 }; | |
| 27 | |
| 28 } // namespace blink | |
| 29 | |
| 30 #endif // CompositorProxyClientFactoryImpl_h | |
| OLD | NEW |