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

Unified Diff: cc/test/fake_proxy.cc

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/test/fake_scoped_ui_resource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_proxy.cc
diff --git a/cc/test/fake_proxy.cc b/cc/test/fake_proxy.cc
deleted file mode 100644
index 9c24162b27121097b1c574c4aa19578403047975..0000000000000000000000000000000000000000
--- a/cc/test/fake_proxy.cc
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "cc/test/fake_proxy.h"
-
-namespace cc {
-
-void FakeProxy::SetLayerTreeHost(LayerTreeHost* host) {
- layer_tree_host_ = host;
-}
-
-bool FakeProxy::IsStarted() const { return true; }
-
-bool FakeProxy::CommitToActiveTree() const {
- return false;
-}
-
-const RendererCapabilities& FakeProxy::GetRendererCapabilities() const {
- return capabilities_;
-}
-
-RendererCapabilities& FakeProxy::GetRendererCapabilities() {
- return capabilities_;
-}
-
-bool FakeProxy::BeginMainFrameRequested() const { return false; }
-
-bool FakeProxy::CommitRequested() const { return false; }
-
-size_t FakeProxy::MaxPartialTextureUpdates() const {
- return max_partial_texture_updates_;
-}
-
-void FakeProxy::SetMaxPartialTextureUpdates(size_t max) {
- max_partial_texture_updates_ = max;
-}
-
-bool FakeProxy::SupportsImplScrolling() const { return false; }
-
-bool FakeProxy::MainFrameWillHappenForTesting() {
- return false;
-}
-
-} // namespace cc
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/test/fake_scoped_ui_resource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698