| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 CC_TREES_THREAD_PROXY_H_ | 5 #ifndef CC_TREES_THREAD_PROXY_H_ |
| 6 #define CC_TREES_THREAD_PROXY_H_ | 6 #define CC_TREES_THREAD_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 namespace base { | 23 namespace base { |
| 24 class SingleThreadTaskRunner; | 24 class SingleThreadTaskRunner; |
| 25 } | 25 } |
| 26 | 26 |
| 27 namespace cc { | 27 namespace cc { |
| 28 | 28 |
| 29 class BeginFrameSource; | 29 class BeginFrameSource; |
| 30 class ContextProvider; | 30 class ContextProvider; |
| 31 class InputHandlerClient; | 31 class InputHandlerClient; |
| 32 class LayerTreeHost; | 32 class LayerTreeHost; |
| 33 class PrioritizedResourceManager; |
| 33 class ResourceUpdateQueue; | 34 class ResourceUpdateQueue; |
| 34 class Scheduler; | 35 class Scheduler; |
| 35 class ScopedThreadProxy; | 36 class ScopedThreadProxy; |
| 36 | 37 |
| 37 class CC_EXPORT ThreadProxy : public Proxy, | 38 class CC_EXPORT ThreadProxy : public Proxy, |
| 38 NON_EXPORTED_BASE(LayerTreeHostImplClient), | 39 NON_EXPORTED_BASE(LayerTreeHostImplClient), |
| 39 NON_EXPORTED_BASE(SchedulerClient), | 40 NON_EXPORTED_BASE(SchedulerClient), |
| 40 NON_EXPORTED_BASE(ResourceUpdateControllerClient) { | 41 NON_EXPORTED_BASE(ResourceUpdateControllerClient) { |
| 41 public: | 42 public: |
| 42 static scoped_ptr<Proxy> Create( | 43 static scoped_ptr<Proxy> Create( |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 | 302 |
| 302 base::WeakPtr<ThreadProxy> main_thread_weak_ptr_; | 303 base::WeakPtr<ThreadProxy> main_thread_weak_ptr_; |
| 303 base::WeakPtr<ThreadProxy> impl_thread_weak_ptr_; | 304 base::WeakPtr<ThreadProxy> impl_thread_weak_ptr_; |
| 304 | 305 |
| 305 DISALLOW_COPY_AND_ASSIGN(ThreadProxy); | 306 DISALLOW_COPY_AND_ASSIGN(ThreadProxy); |
| 306 }; | 307 }; |
| 307 | 308 |
| 308 } // namespace cc | 309 } // namespace cc |
| 309 | 310 |
| 310 #endif // CC_TREES_THREAD_PROXY_H_ | 311 #endif // CC_TREES_THREAD_PROXY_H_ |
| OLD | NEW |