OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ | 5 #ifndef UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ |
6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ | 6 #define UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ |
7 | 7 |
8 #include "ui/compositor/compositor.h" | 8 #include "ui/compositor/compositor.h" |
9 | 9 |
| 10 namespace base { |
| 11 class Thread; |
| 12 } |
| 13 |
10 namespace webkit { | 14 namespace webkit { |
11 namespace gpu { | 15 namespace gpu { |
12 class ContextProviderInProcess; | 16 class ContextProviderInProcess; |
13 } | 17 } |
14 } | 18 } |
15 | 19 |
16 namespace ui { | 20 namespace ui { |
17 | 21 |
18 class InProcessContextFactory : public ContextFactory { | 22 class InProcessContextFactory : public ContextFactory { |
19 public: | 23 public: |
20 InProcessContextFactory(); | 24 InProcessContextFactory(); |
21 virtual ~InProcessContextFactory(); | 25 virtual ~InProcessContextFactory(); |
22 | 26 |
23 // ContextFactory implementation | 27 // ContextFactory implementation |
24 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface( | 28 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface( |
25 Compositor* compositor, | 29 Compositor* compositor, |
26 bool software_fallback) OVERRIDE; | 30 bool software_fallback) OVERRIDE; |
27 | 31 |
28 virtual scoped_refptr<Reflector> CreateReflector( | 32 virtual scoped_refptr<Reflector> CreateReflector( |
29 Compositor* mirrored_compositor, | 33 Compositor* mirrored_compositor, |
30 Layer* mirroring_layer) OVERRIDE; | 34 Layer* mirroring_layer) OVERRIDE; |
31 virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE; | 35 virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE; |
32 | 36 |
33 virtual scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() | 37 virtual scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() |
34 OVERRIDE; | 38 OVERRIDE; |
35 virtual void RemoveCompositor(Compositor* compositor) OVERRIDE; | 39 virtual void RemoveCompositor(Compositor* compositor) OVERRIDE; |
36 virtual bool DoesCreateTestContexts() OVERRIDE; | 40 virtual bool DoesCreateTestContexts() OVERRIDE; |
37 virtual cc::SharedBitmapManager* GetSharedBitmapManager() OVERRIDE; | 41 virtual cc::SharedBitmapManager* GetSharedBitmapManager() OVERRIDE; |
| 42 virtual base::MessageLoopProxy* GetCompositorMessageLoop() OVERRIDE; |
38 | 43 |
39 private: | 44 private: |
| 45 scoped_ptr<base::Thread> compositor_thread_; |
40 scoped_refptr<webkit::gpu::ContextProviderInProcess> | 46 scoped_refptr<webkit::gpu::ContextProviderInProcess> |
41 shared_main_thread_contexts_; | 47 shared_main_thread_contexts_; |
42 scoped_ptr<cc::SharedBitmapManager> shared_bitmap_manager_; | 48 scoped_ptr<cc::SharedBitmapManager> shared_bitmap_manager_; |
43 | 49 |
44 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory); | 50 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory); |
45 }; | 51 }; |
46 | 52 |
47 } // namespace ui | 53 } // namespace ui |
48 | 54 |
49 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ | 55 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ |
OLD | NEW |