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/test_context_provider.h" | 10 #include "cc/test/test_context_provider.h" |
11 #include "cc/test/test_web_graphics_context_3d.h" | 11 #include "cc/test/test_web_graphics_context_3d.h" |
12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 namespace { | 16 namespace { |
17 | 17 |
18 class TestOutputSurface : public OutputSurface { | 18 class TestOutputSurface : public OutputSurface { |
19 public: | 19 public: |
20 explicit TestOutputSurface( | 20 explicit TestOutputSurface( |
21 const scoped_refptr<ContextProvider>& context_provider); | 21 const scoped_refptr<ContextProvider>& context_provider); |
22 virtual ~TestOutputSurface() override; | 22 ~TestOutputSurface() override; |
23 | 23 |
24 // OutputSurface implementation | 24 // OutputSurface implementation |
25 virtual void SwapBuffers(CompositorFrame* frame) override; | 25 void SwapBuffers(CompositorFrame* frame) override; |
26 }; | 26 }; |
27 | 27 |
28 TestOutputSurface::TestOutputSurface( | 28 TestOutputSurface::TestOutputSurface( |
29 const scoped_refptr<ContextProvider>& context_provider) | 29 const scoped_refptr<ContextProvider>& context_provider) |
30 : OutputSurface(context_provider) { | 30 : OutputSurface(context_provider) { |
31 } | 31 } |
32 | 32 |
33 TestOutputSurface::~TestOutputSurface() { | 33 TestOutputSurface::~TestOutputSurface() { |
34 } | 34 } |
35 | 35 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources()) | 106 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources()) |
107 .Times(1); | 107 .Times(1); |
108 | 108 |
109 EXPECT_TRUE(this->renderer_->visible()); | 109 EXPECT_TRUE(this->renderer_->visible()); |
110 this->renderer_->SetVisible(false); | 110 this->renderer_->SetVisible(false); |
111 EXPECT_FALSE(this->renderer_->visible()); | 111 EXPECT_FALSE(this->renderer_->visible()); |
112 } | 112 } |
113 | 113 |
114 } // namespace | 114 } // namespace |
115 } // namespace cc | 115 } // namespace cc |
OLD | NEW |