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

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

Issue 606113003: Revert of Make cc output surface creation async (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 2 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.cc ('k') | cc/trees/layer_tree_host_common_unittest.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 2012 The Chromium Authors. All rights reserved. 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 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_LAYER_TREE_HOST_CLIENT_H_ 5 #ifndef CC_TREES_LAYER_TREE_HOST_CLIENT_H_
6 #define CC_TREES_LAYER_TREE_HOST_CLIENT_H_ 6 #define CC_TREES_LAYER_TREE_HOST_CLIENT_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 12 matching lines...) Expand all
23 public: 23 public:
24 virtual void WillBeginMainFrame(int frame_id) = 0; 24 virtual void WillBeginMainFrame(int frame_id) = 0;
25 // Marks finishing compositing-related tasks on the main thread. In threaded 25 // Marks finishing compositing-related tasks on the main thread. In threaded
26 // mode, this corresponds to DidCommit(). 26 // mode, this corresponds to DidCommit().
27 virtual void BeginMainFrame(const BeginFrameArgs& args) = 0; 27 virtual void BeginMainFrame(const BeginFrameArgs& args) = 0;
28 virtual void DidBeginMainFrame() = 0; 28 virtual void DidBeginMainFrame() = 0;
29 virtual void Layout() = 0; 29 virtual void Layout() = 0;
30 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, 30 virtual void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta,
31 float page_scale, 31 float page_scale,
32 float top_controls_delta) = 0; 32 float top_controls_delta) = 0;
33 // Request an OutputSurface from the client. When the client has one it should 33 // Creates an OutputSurface. If fallback is true, it should attempt to
34 // call LayerTreeHost::SetOutputSurface. If fallback is true, it should 34 // create an OutputSurface that is guaranteed to initialize correctly.
35 // attempt to create an OutputSurface that is guaranteed to initialize 35 virtual scoped_ptr<OutputSurface> CreateOutputSurface(bool fallback) = 0;
36 // correctly.
37 virtual void RequestNewOutputSurface(bool fallback) = 0;
38 virtual void DidInitializeOutputSurface() = 0; 36 virtual void DidInitializeOutputSurface() = 0;
39 virtual void WillCommit() = 0; 37 virtual void WillCommit() = 0;
40 virtual void DidCommit() = 0; 38 virtual void DidCommit() = 0;
41 virtual void DidCommitAndDrawFrame() = 0; 39 virtual void DidCommitAndDrawFrame() = 0;
42 virtual void DidCompleteSwapBuffers() = 0; 40 virtual void DidCompleteSwapBuffers() = 0;
43 41
44 // Requests that the client insert a rate limiting token in the shared main 42 // Requests that the client insert a rate limiting token in the shared main
45 // thread context's command stream that will block if the context gets too far 43 // thread context's command stream that will block if the context gets too far
46 // ahead of the compositor's command stream. Only needed if the tree contains 44 // ahead of the compositor's command stream. Only needed if the tree contains
47 // a TextureLayer that calls SetRateLimitContext(true). 45 // a TextureLayer that calls SetRateLimitContext(true).
48 virtual void RateLimitSharedMainThreadContext() {} 46 virtual void RateLimitSharedMainThreadContext() {}
49 47
50 // This hook is for testing. 48 // This hook is for testing.
51 virtual void DidFailToInitializeOutputSurface() {} 49 virtual void DidFailToInitializeOutputSurface() {}
52 50
53 protected: 51 protected:
54 virtual ~LayerTreeHostClient() {} 52 virtual ~LayerTreeHostClient() {}
55 }; 53 };
56 54
57 } // namespace cc 55 } // namespace cc
58 56
59 #endif // CC_TREES_LAYER_TREE_HOST_CLIENT_H_ 57 #endif // CC_TREES_LAYER_TREE_HOST_CLIENT_H_
OLDNEW
« no previous file with comments | « cc/trees/layer_tree_host.cc ('k') | cc/trees/layer_tree_host_common_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698