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

Side by Side Diff: cc/test/fake_proxy.cc

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 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/test/fake_proxy.h ('k') | cc/test/fake_resource_provider.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/test/fake_proxy.h" 5 #include "cc/test/fake_proxy.h"
6 6
7 #include "cc/animation/layer_tree_mutator.h" 7 #include "cc/animation/layer_tree_mutator.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
11 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { 11 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {
12 layer_tree_host_ = host; 12 layer_tree_host_ = host;
13 } 13 }
14 14
15 bool FakeProxy::IsStarted() const { return true; } 15 bool FakeProxy::IsStarted() const { return true; }
16 16
17 bool FakeProxy::CommitToActiveTree() const { 17 bool FakeProxy::CommitToActiveTree() const {
18 return false; 18 return false;
19 } 19 }
20 20
21 void FakeProxy::ReleaseOutputSurface() {} 21 void FakeProxy::ReleaseCompositorFrameSink() {}
22 22
23 bool FakeProxy::BeginMainFrameRequested() const { return false; } 23 bool FakeProxy::BeginMainFrameRequested() const { return false; }
24 24
25 bool FakeProxy::CommitRequested() const { return false; } 25 bool FakeProxy::CommitRequested() const { return false; }
26 26
27 void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {} 27 void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {}
28 28
29 bool FakeProxy::SupportsImplScrolling() const { 29 bool FakeProxy::SupportsImplScrolling() const {
30 return true; 30 return true;
31 } 31 }
32 32
33 bool FakeProxy::MainFrameWillHappenForTesting() { 33 bool FakeProxy::MainFrameWillHappenForTesting() {
34 return false; 34 return false;
35 } 35 }
36 36
37 } // namespace cc 37 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/test/fake_resource_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698