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

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

Issue 1895873006: compositor-worker: Initialize CW machinery plumbing to compositor and fire CW rAF callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include WebCompositorMutatorClient from WebLayerTreeView to allow unique_ptr usage. Created 4 years, 6 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/trees/channel_main.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"
8
7 namespace cc { 9 namespace cc {
8 10
9 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { 11 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {
10 layer_tree_host_ = host; 12 layer_tree_host_ = host;
11 } 13 }
12 14
13 bool FakeProxy::IsStarted() const { return true; } 15 bool FakeProxy::IsStarted() const { return true; }
14 16
15 bool FakeProxy::CommitToActiveTree() const { 17 bool FakeProxy::CommitToActiveTree() const {
16 return false; 18 return false;
17 } 19 }
18 20
19 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const { 21 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const {
20 return capabilities_; 22 return capabilities_;
21 } 23 }
22 24
23 RendererCapabilities& FakeProxy::GetRendererCapabilities() { 25 RendererCapabilities& FakeProxy::GetRendererCapabilities() {
24 return capabilities_; 26 return capabilities_;
25 } 27 }
26 28
27 void FakeProxy::ReleaseOutputSurface() {} 29 void FakeProxy::ReleaseOutputSurface() {}
28 30
29 bool FakeProxy::BeginMainFrameRequested() const { return false; } 31 bool FakeProxy::BeginMainFrameRequested() const { return false; }
30 32
31 bool FakeProxy::CommitRequested() const { return false; } 33 bool FakeProxy::CommitRequested() const { return false; }
32 34
35 void FakeProxy::SetMutator(std::unique_ptr<LayerTreeMutator> mutator) {}
36
33 bool FakeProxy::SupportsImplScrolling() const { 37 bool FakeProxy::SupportsImplScrolling() const {
34 return true; 38 return true;
35 } 39 }
36 40
37 bool FakeProxy::MainFrameWillHappenForTesting() { 41 bool FakeProxy::MainFrameWillHappenForTesting() {
38 return false; 42 return false;
39 } 43 }
40 44
41 } // namespace cc 45 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/trees/channel_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698