diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 21:21:59 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-01 21:21:59 +0000 |
commit | 5bc29a2dabe01f1e2315bcc287f11db10df4144b (patch) | |
tree | 0c451bebe2c40e867a935b5f52b25a242f5f825c /cc/test/fake_proxy.cc | |
parent | 4d8bb1a91681f8e48cc5e6b7ac29f3723eadf0d5 (diff) | |
download | chromium_src-5bc29a2dabe01f1e2315bcc287f11db10df4144b.zip chromium_src-5bc29a2dabe01f1e2315bcc287f11db10df4144b.tar.gz chromium_src-5bc29a2dabe01f1e2315bcc287f11db10df4144b.tar.bz2 |
Revert 165476 - Remove static thread pointers from CC
Might be causing webkit_unit_tests to fail on mac/win
BUG=152904
Review URL: https://codereview.chromium.org/11232051
TBR=jamesr@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165501 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/fake_proxy.cc')
-rw-r--r-- | cc/test/fake_proxy.cc | 52 |
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 |