summaryrefslogtreecommitdiffstats
path: root/cc/test/fake_proxy.cc
diff options
context:
space:
mode:
authorhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 07:17:46 +0000
committerhbono@chromium.org <hbono@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-05 07:17:46 +0000
commit068d7ef6aed7f5a7bdaf1e8d28b422c547be294d (patch)
treea66fd6a12e3a9ae7ef16c66043fd4e4bebe4d28c /cc/test/fake_proxy.cc
parent2bddc10a9e71bd3e7d7f010b46ec96c7ab623336 (diff)
downloadchromium_src-068d7ef6aed7f5a7bdaf1e8d28b422c547be294d.zip
chromium_src-068d7ef6aed7f5a7bdaf1e8d28b422c547be294d.tar.gz
chromium_src-068d7ef6aed7f5a7bdaf1e8d28b422c547be294d.tar.bz2
A speculative Revert for r165872 - Remove static thread pointers from CC, attempt 2
BUG=152904 Review URL: https://chromiumcodereview.appspot.com/11232051 TBR=aelias@chromium.org Review URL: https://codereview.chromium.org/11369071 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_proxy.cc')
-rw-r--r--cc/test/fake_proxy.cc52
1 files changed, 0 insertions, 52 deletions
diff --git a/cc/test/fake_proxy.cc b/cc/test/fake_proxy.cc
deleted file mode 100644
index fad6c69..0000000
--- a/cc/test/fake_proxy.cc
+++ /dev/null
@@ -1,52 +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 "config.h"
-
-#include "cc/test/fake_proxy.h"
-
-namespace cc {
-
-bool FakeProxy::compositeAndReadback(void *pixels, const gfx::Rect&)
-{
- return false;
-}
-
-bool FakeProxy::isStarted() const
-{
- return false;
-}
-
-bool FakeProxy::initializeContext()
-{
- return false;
-}
-
-bool FakeProxy::initializeRenderer()
-{
- return false;
-}
-
-bool FakeProxy::recreateContext()
-{
- return false;
-}
-
-const RendererCapabilities& FakeProxy::rendererCapabilities() const
-{
- return m_capabilities;
-}
-
-bool FakeProxy::commitRequested() const
-{
- return false;
-}
-
-size_t FakeProxy::maxPartialTextureUpdates() const
-{
- return 0;
-}
-
-
-} // namespace cc