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

Side by Side Diff: cc/trees/proxy.h

Issue 133263004: Unifies LayerTreeHost::SetNeedsUpdateLayers and SetNeedsAnimate -- V2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mojo build Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « cc/trees/layer_tree_host_unittest_animation.cc ('k') | cc/trees/single_thread_proxy.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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 #ifndef CC_TREES_PROXY_H_ 5 #ifndef CC_TREES_PROXY_H_
6 #define CC_TREES_PROXY_H_ 6 #define CC_TREES_PROXY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 virtual void SetVisible(bool visible) = 0; 59 virtual void SetVisible(bool visible) = 0;
60 60
61 // Attempts to recreate the context and renderer synchronously after the 61 // Attempts to recreate the context and renderer synchronously after the
62 // output surface is lost. Calls 62 // output surface is lost. Calls
63 // LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted with the result. 63 // LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted with the result.
64 virtual void CreateAndInitializeOutputSurface() = 0; 64 virtual void CreateAndInitializeOutputSurface() = 0;
65 65
66 virtual const RendererCapabilities& GetRendererCapabilities() const = 0; 66 virtual const RendererCapabilities& GetRendererCapabilities() const = 0;
67 67
68 virtual void SetNeedsAnimate() = 0;
69 virtual void SetNeedsUpdateLayers() = 0; 68 virtual void SetNeedsUpdateLayers() = 0;
70 virtual void SetNeedsCommit() = 0; 69 virtual void SetNeedsCommit() = 0;
71 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0; 70 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0;
72 virtual void SetNextCommitWaitsForActivation() = 0; 71 virtual void SetNextCommitWaitsForActivation() = 0;
73 72
74 virtual void NotifyInputThrottledUntilCommit() = 0; 73 virtual void NotifyInputThrottledUntilCommit() = 0;
75 74
76 // Defers commits until it is reset. It is only supported when in threaded 75 // Defers commits until it is reset. It is only supported when in threaded
77 // mode. It's an error to make a sync call like CompositeAndReadback while 76 // mode. It's an error to make a sync call like CompositeAndReadback while
78 // commits are deferred. 77 // commits are deferred.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 explicit DebugScopedSetMainThreadBlocked(Proxy* proxy) {} 140 explicit DebugScopedSetMainThreadBlocked(Proxy* proxy) {}
142 ~DebugScopedSetMainThreadBlocked() {} 141 ~DebugScopedSetMainThreadBlocked() {}
143 private: 142 private:
144 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetMainThreadBlocked); 143 DISALLOW_COPY_AND_ASSIGN(DebugScopedSetMainThreadBlocked);
145 }; 144 };
146 #endif 145 #endif
147 146
148 } // namespace cc 147 } // namespace cc
149 148
150 #endif // CC_TREES_PROXY_H_ 149 #endif // CC_TREES_PROXY_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host_unittest_animation.cc ('k') | cc/trees/single_thread_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698