1 // Copyright 2013 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 UI_COMPOSITOR_TEST_TEST_CONTEXT_FACTORY_H_ 6 #define UI_COMPOSITOR_TEST_TEST_CONTEXT_FACTORY_H_ 7 8 #include "ui/compositor/compositor.h" 9 10 namespace cc { class TestContextProvider; } 11 12 namespace ui { 13 14 // The factory that creates test contexts. 15 class TestContextFactory : public ContextFactory { 16 public: 17 TestContextFactory(); 18 virtual ~TestContextFactory(); 19 20 // ContextFactory implementation 21 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface( 22 Compositor* compositor, bool software_fallback) OVERRIDE; 23 24 virtual scoped_refptr<Reflector> CreateReflector( 25 Compositor* mirrored_compositor, 26 Layer* mirroring_layer) OVERRIDE; 27 virtual void RemoveReflector(scoped_refptr<Reflector> reflector) OVERRIDE; 28 29 virtual scoped_refptr<cc::ContextProvider> 30 OffscreenCompositorContextProvider() OVERRIDE; 31 virtual scoped_refptr<cc::ContextProvider> 32 SharedMainThreadContextProvider() OVERRIDE; 33 virtual void RemoveCompositor(Compositor* compositor) OVERRIDE; 34 virtual bool DoesCreateTestContexts() OVERRIDE; 35 36 private: 37 scoped_refptr<cc::TestContextProvider> offscreen_compositor_contexts_; 38 scoped_refptr<cc::TestContextProvider> shared_main_thread_contexts_; 39 40 DISALLOW_COPY_AND_ASSIGN(TestContextFactory); 41 }; 42 43 } // namespace ui 44 45 #endif // UI_COMPOSITOR_TEST_TEST_CONTEXT_FACTORY_H_ 46