| 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 webkit { | 10 namespace webkit { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // ContextFactory implementation | 23 // ContextFactory implementation |
| 24 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface( | 24 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface( |
| 25 Compositor* compositor, | 25 Compositor* compositor, |
| 26 bool software_fallback) OVERRIDE; | 26 bool software_fallback) OVERRIDE; |
| 27 | 27 |
| 28 virtual scoped_refptr<Reflector> CreateReflector( | 28 virtual scoped_refptr<Reflector> CreateReflector( |
| 29 Compositor* mirrored_compositor, | 29 Compositor* mirrored_compositor, |
| 30 Layer* mirroring_layer) OVERRIDE; | 30 Layer* mirroring_layer) OVERRIDE; |
| 31 virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE; | 31 virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE; |
| 32 | 32 |
| 33 virtual scoped_refptr<cc::ContextProvider> | |
| 34 OffscreenCompositorContextProvider() OVERRIDE; | |
| 35 virtual scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() | 33 virtual scoped_refptr<cc::ContextProvider> SharedMainThreadContextProvider() |
| 36 OVERRIDE; | 34 OVERRIDE; |
| 37 virtual void RemoveCompositor(Compositor* compositor) OVERRIDE; | 35 virtual void RemoveCompositor(Compositor* compositor) OVERRIDE; |
| 38 virtual bool DoesCreateTestContexts() OVERRIDE; | 36 virtual bool DoesCreateTestContexts() OVERRIDE; |
| 39 | 37 |
| 40 private: | 38 private: |
| 41 scoped_refptr<webkit::gpu::ContextProviderInProcess> | 39 scoped_refptr<webkit::gpu::ContextProviderInProcess> |
| 42 offscreen_compositor_contexts_; | |
| 43 scoped_refptr<webkit::gpu::ContextProviderInProcess> | |
| 44 shared_main_thread_contexts_; | 40 shared_main_thread_contexts_; |
| 45 | 41 |
| 46 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory); | 42 DISALLOW_COPY_AND_ASSIGN(InProcessContextFactory); |
| 47 }; | 43 }; |
| 48 | 44 |
| 49 } // namespace ui | 45 } // namespace ui |
| 50 | 46 |
| 51 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ | 47 #endif // UI_COMPOSITOR_TEST_IN_PROCESS_CONTEXT_FACTORY_H_ |
| OLD | NEW |