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 #include "cc/output/delegating_renderer.h" | 5 #include "cc/output/delegating_renderer.h" |
6 #include "cc/output/gl_renderer.h" | 6 #include "cc/output/gl_renderer.h" |
7 #include "cc/output/output_surface.h" | 7 #include "cc/output/output_surface.h" |
8 #include "cc/test/fake_output_surface_client.h" | 8 #include "cc/test/fake_output_surface_client.h" |
9 #include "cc/test/fake_renderer_client.h" | 9 #include "cc/test/fake_renderer_client.h" |
10 #include "cc/test/fake_resource_provider.h" | 10 #include "cc/test/fake_resource_provider.h" |
11 #include "cc/test/test_context_provider.h" | 11 #include "cc/test/test_context_provider.h" |
| 12 #include "cc/test/test_gles2_interface.h" |
12 #include "cc/test/test_web_graphics_context_3d.h" | 13 #include "cc/test/test_web_graphics_context_3d.h" |
13 #include "testing/gmock/include/gmock/gmock.h" | 14 #include "testing/gmock/include/gmock/gmock.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
15 | 16 |
16 namespace cc { | 17 namespace cc { |
17 namespace { | 18 namespace { |
18 | 19 |
19 class TestOutputSurface : public OutputSurface { | 20 class TestOutputSurface : public OutputSurface { |
20 public: | 21 public: |
21 explicit TestOutputSurface(scoped_refptr<ContextProvider> context_provider); | 22 explicit TestOutputSurface(scoped_refptr<ContextProvider> context_provider); |
(...skipping 12 matching lines...) Expand all Loading... |
34 } | 35 } |
35 | 36 |
36 void TestOutputSurface::SwapBuffers(CompositorFrame frame) { | 37 void TestOutputSurface::SwapBuffers(CompositorFrame frame) { |
37 client_->DidSwapBuffersComplete(); | 38 client_->DidSwapBuffersComplete(); |
38 } | 39 } |
39 | 40 |
40 class MockContextProvider : public TestContextProvider { | 41 class MockContextProvider : public TestContextProvider { |
41 public: | 42 public: |
42 explicit MockContextProvider( | 43 explicit MockContextProvider( |
43 std::unique_ptr<TestWebGraphicsContext3D> context) | 44 std::unique_ptr<TestWebGraphicsContext3D> context) |
44 : TestContextProvider(std::move(context)) {} | 45 : TestContextProvider(base::MakeUnique<TestGLES2Interface>(), |
| 46 std::move(context)) {} |
45 MOCK_METHOD0(DeleteCachedResources, void()); | 47 MOCK_METHOD0(DeleteCachedResources, void()); |
46 | 48 |
47 protected: | 49 protected: |
48 ~MockContextProvider() {} | 50 ~MockContextProvider() {} |
49 }; | 51 }; |
50 | 52 |
51 template <class T> | 53 template <class T> |
52 std::unique_ptr<Renderer> CreateRenderer(RendererClient* client, | 54 std::unique_ptr<Renderer> CreateRenderer(RendererClient* client, |
53 const RendererSettings* settings, | 55 const RendererSettings* settings, |
54 OutputSurface* output_surface, | 56 OutputSurface* output_surface, |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources()) | 108 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources()) |
107 .Times(1); | 109 .Times(1); |
108 | 110 |
109 EXPECT_TRUE(this->renderer_->visible()); | 111 EXPECT_TRUE(this->renderer_->visible()); |
110 this->renderer_->SetVisible(false); | 112 this->renderer_->SetVisible(false); |
111 EXPECT_FALSE(this->renderer_->visible()); | 113 EXPECT_FALSE(this->renderer_->visible()); |
112 } | 114 } |
113 | 115 |
114 } // namespace | 116 } // namespace |
115 } // namespace cc | 117 } // namespace cc |
OLD | NEW |