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

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

Issue 11232051: Remove static thread pointers from CC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Apply code review comments Created 8 years, 1 month 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/test/layer_tree_test_common.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "config.h"
6
7 #include "cc/test/fake_proxy.h"
8
9 namespace cc {
10
11 bool FakeProxy::compositeAndReadback(void *pixels, const gfx::Rect&)
12 {
13 return false;
14 }
15
16 bool FakeProxy::isStarted() const
17 {
18 return false;
19 }
20
21 bool FakeProxy::initializeContext()
22 {
23 return false;
24 }
25
26 bool FakeProxy::initializeRenderer()
27 {
28 return false;
29 }
30
31 bool FakeProxy::recreateContext()
32 {
33 return false;
34 }
35
36 const RendererCapabilities& FakeProxy::rendererCapabilities() const
37 {
38 return m_capabilities;
39 }
40
41 bool FakeProxy::commitRequested() const
42 {
43 return false;
44 }
45
46 size_t FakeProxy::maxPartialTextureUpdates() const
47 {
48 return 0;
49 }
50
51
52 } // namespace cc
OLDNEW
« no previous file with comments | « cc/test/fake_proxy.h ('k') | cc/test/layer_tree_test_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698