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

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

Issue 873473006: cc: Commit directly to active tree when using single thread. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: committoactive: smallerdiff Created 5 years, 10 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/layer_tree_host_impl.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 namespace cc { 7 namespace cc {
8 8
9 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) { 9 void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {
10 layer_tree_host_ = host; 10 layer_tree_host_ = host;
11 } 11 }
12 12
13 bool FakeProxy::IsStarted() const { return true; } 13 bool FakeProxy::IsStarted() const { return true; }
14 14
15 bool FakeProxy::CommitToActiveTree() const {
16 return false;
17 }
18
15 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const { 19 const RendererCapabilities& FakeProxy::GetRendererCapabilities() const {
16 return capabilities_; 20 return capabilities_;
17 } 21 }
18 22
19 RendererCapabilities& FakeProxy::GetRendererCapabilities() { 23 RendererCapabilities& FakeProxy::GetRendererCapabilities() {
20 return capabilities_; 24 return capabilities_;
21 } 25 }
22 26
23 bool FakeProxy::BeginMainFrameRequested() const { return false; } 27 bool FakeProxy::BeginMainFrameRequested() const { return false; }
24 28
(...skipping 10 matching lines...) Expand all
35 bool FakeProxy::SupportsImplScrolling() const { return false; } 39 bool FakeProxy::SupportsImplScrolling() const { return false; }
36 40
37 bool FakeProxy::MainFrameWillHappenForTesting() { 41 bool FakeProxy::MainFrameWillHappenForTesting() {
38 return false; 42 return false;
39 } 43 }
40 44
41 void FakeProxy::AsValueInto(base::trace_event::TracedValue*) const { 45 void FakeProxy::AsValueInto(base::trace_event::TracedValue*) const {
42 } 46 }
43 47
44 } // namespace cc 48 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/trees/layer_tree_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698