Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: cc/output/renderer_unittest.cc

Issue 2193293004: cc: Make LayerTreeTests use a DelegatingRenderer and Display. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: display-layertreetest: withperftestsfix Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/output/delegating_renderer_unittest.cc ('k') | cc/surfaces/display.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
(...skipping 24 matching lines...) Expand all
35 } 35 }
36 36
37 void TestOutputSurface::SwapBuffers(CompositorFrame frame) { 37 void TestOutputSurface::SwapBuffers(CompositorFrame frame) {
38 client_->DidSwapBuffersComplete(); 38 client_->DidSwapBuffersComplete();
39 } 39 }
40 40
41 class MockContextProvider : public TestContextProvider { 41 class MockContextProvider : public TestContextProvider {
42 public: 42 public:
43 explicit MockContextProvider( 43 explicit MockContextProvider(
44 std::unique_ptr<TestWebGraphicsContext3D> context) 44 std::unique_ptr<TestWebGraphicsContext3D> context)
45 : TestContextProvider(base::MakeUnique<TestGLES2Interface>(), 45 : TestContextProvider(base::MakeUnique<TestContextSupport>(),
46 base::MakeUnique<TestGLES2Interface>(),
46 std::move(context)) {} 47 std::move(context)) {}
47 MOCK_METHOD0(DeleteCachedResources, void()); 48 MOCK_METHOD0(DeleteCachedResources, void());
48 49
49 protected: 50 protected:
50 ~MockContextProvider() {} 51 ~MockContextProvider() {}
51 }; 52 };
52 53
53 template <class T> 54 template <class T>
54 std::unique_ptr<Renderer> CreateRenderer(RendererClient* client, 55 std::unique_ptr<Renderer> CreateRenderer(RendererClient* client,
55 const RendererSettings* settings, 56 const RendererSettings* settings,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources()) 109 EXPECT_CALL(*(this->context_provider_.get()), DeleteCachedResources())
109 .Times(1); 110 .Times(1);
110 111
111 EXPECT_TRUE(this->renderer_->visible()); 112 EXPECT_TRUE(this->renderer_->visible());
112 this->renderer_->SetVisible(false); 113 this->renderer_->SetVisible(false);
113 EXPECT_FALSE(this->renderer_->visible()); 114 EXPECT_FALSE(this->renderer_->visible());
114 } 115 }
115 116
116 } // namespace 117 } // namespace
117 } // namespace cc 118 } // namespace cc
OLDNEW
« no previous file with comments | « cc/output/delegating_renderer_unittest.cc ('k') | cc/surfaces/display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698