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

Side by Side Diff: cc/layer_tree_host.h

Issue 11565022: Add API to route end of fling messages from WebLayerTreeView to InputHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add call to fake_proxy Created 8 years 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/input_handler.h ('k') | cc/layer_tree_host.cc » ('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_LAYER_TREE_HOST_H_ 5 #ifndef CC_LAYER_TREE_HOST_H_
6 #define CC_LAYER_TREE_HOST_H_ 6 #define CC_LAYER_TREE_HOST_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 static bool anyLayerTreeHostInstanceExists(); 79 static bool anyLayerTreeHostInstanceExists();
80 80
81 static bool needsFilterContext() { return s_needsFilterContext; } 81 static bool needsFilterContext() { return s_needsFilterContext; }
82 static void setNeedsFilterContext(bool needsFilterContext) { s_needsFilterCo ntext = needsFilterContext; } 82 static void setNeedsFilterContext(bool needsFilterContext) { s_needsFilterCo ntext = needsFilterContext; }
83 bool needsSharedContext() const { return needsFilterContext() || settings(). acceleratePainting; } 83 bool needsSharedContext() const { return needsFilterContext() || settings(). acceleratePainting; }
84 84
85 // LayerTreeHost interface to Proxy. 85 // LayerTreeHost interface to Proxy.
86 void willBeginFrame() { m_client->willBeginFrame(); } 86 void willBeginFrame() { m_client->willBeginFrame(); }
87 void didBeginFrame() { m_client->didBeginFrame(); } 87 void didBeginFrame() { m_client->didBeginFrame(); }
88 void updateAnimations(base::TimeTicks monotonicFrameBeginTime); 88 void updateAnimations(base::TimeTicks monotonicFrameBeginTime);
89 void didStopFlinging();
89 void layout(); 90 void layout();
90 void beginCommitOnImplThread(LayerTreeHostImpl*); 91 void beginCommitOnImplThread(LayerTreeHostImpl*);
91 void finishCommitOnImplThread(LayerTreeHostImpl*); 92 void finishCommitOnImplThread(LayerTreeHostImpl*);
92 void willCommit(); 93 void willCommit();
93 void commitComplete(); 94 void commitComplete();
94 scoped_ptr<OutputSurface> createOutputSurface(); 95 scoped_ptr<OutputSurface> createOutputSurface();
95 scoped_ptr<InputHandler> createInputHandler(); 96 scoped_ptr<InputHandler> createInputHandler();
96 virtual scoped_ptr<LayerTreeHostImpl> createLayerTreeHostImpl(LayerTreeHostI mplClient*); 97 virtual scoped_ptr<LayerTreeHostImpl> createLayerTreeHostImpl(LayerTreeHostI mplClient*);
97 void didLoseOutputSurface(); 98 void didLoseOutputSurface();
98 enum RecreateResult { 99 enum RecreateResult {
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 size_t m_partialTextureUpdateRequests; 273 size_t m_partialTextureUpdateRequests;
273 274
274 static bool s_needsFilterContext; 275 static bool s_needsFilterContext;
275 276
276 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 277 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
277 }; 278 };
278 279
279 } // namespace cc 280 } // namespace cc
280 281
281 #endif // CC_LAYER_TREE_HOST_H_ 282 #endif // CC_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « cc/input_handler.h ('k') | cc/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698