Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / ozone / platform / test / test_surface_factory.h
blob98002ecc20661bf9559961d600ad2deaae260bf7
1 // Copyright 2015 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.
5 #ifndef UI_OZONE_PLATFORM_TEST_TEST_SURFACE_FACTORY_H_
6 #define UI_OZONE_PLATFORM_TEST_TEST_SURFACE_FACTORY_H_
8 #include "ui/ozone/public/surface_factory_ozone.h"
10 namespace ui {
12 class TestWindowManager;
14 class TestSurfaceFactory : public SurfaceFactoryOzone {
15 public:
16 TestSurfaceFactory();
17 explicit TestSurfaceFactory(TestWindowManager* window_manager);
18 ~TestSurfaceFactory() override;
20 // SurfaceFactoryOzone:
21 scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
22 gfx::AcceleratedWidget w) override;
23 bool LoadEGLGLES2Bindings(
24 AddGLLibraryCallback add_gl_library,
25 SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
27 private:
28 TestWindowManager* window_manager_;
30 DISALLOW_COPY_AND_ASSIGN(TestSurfaceFactory);
33 } // namespace ui
35 #endif // UI_OZONE_PLATFORM_TEST_TEST_SURFACE_FACTORY_H_