OLD | NEW |
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 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 // Marks finishing compositing-related tasks on the main thread. In threaded | 23 // Marks finishing compositing-related tasks on the main thread. In threaded |
24 // mode, this corresponds to DidCommit(). | 24 // mode, this corresponds to DidCommit(). |
25 virtual void DidBeginFrame() = 0; | 25 virtual void DidBeginFrame() = 0; |
26 virtual void Animate(double frame_begin_time) = 0; | 26 virtual void Animate(double frame_begin_time) = 0; |
27 virtual void Layout() = 0; | 27 virtual void Layout() = 0; |
28 virtual void ApplyScrollAndScale(gfx::Vector2d scroll_delta, | 28 virtual void ApplyScrollAndScale(gfx::Vector2d scroll_delta, |
29 float page_scale) = 0; | 29 float page_scale) = 0; |
30 virtual scoped_ptr<OutputSurface> CreateOutputSurface() = 0; | 30 virtual scoped_ptr<OutputSurface> CreateOutputSurface() = 0; |
31 // TODO(boliu): Rename to DidInitializeOutputSurface. | 31 // TODO(boliu): Rename to DidInitializeOutputSurface. |
32 virtual void DidRecreateOutputSurface(bool success) = 0; | 32 virtual void DidRecreateOutputSurface(bool success) = 0; |
33 virtual scoped_ptr<InputHandlerClient> CreateInputHandlerClient() = 0; | |
34 virtual void WillCommit() = 0; | 33 virtual void WillCommit() = 0; |
35 virtual void DidCommit() = 0; | 34 virtual void DidCommit() = 0; |
36 virtual void DidCommitAndDrawFrame() = 0; | 35 virtual void DidCommitAndDrawFrame() = 0; |
37 virtual void DidCompleteSwapBuffers() = 0; | 36 virtual void DidCompleteSwapBuffers() = 0; |
38 | 37 |
39 // Used only in the single-threaded path. | 38 // Used only in the single-threaded path. |
40 virtual void ScheduleComposite() = 0; | 39 virtual void ScheduleComposite() = 0; |
41 | 40 |
42 // These must always return a valid ContextProvider. But the provider does not | 41 // These must always return a valid ContextProvider. But the provider does not |
43 // need to be capable of creating contexts. | 42 // need to be capable of creating contexts. |
44 virtual scoped_refptr<cc::ContextProvider> | 43 virtual scoped_refptr<cc::ContextProvider> |
45 OffscreenContextProviderForMainThread() = 0; | 44 OffscreenContextProviderForMainThread() = 0; |
46 virtual scoped_refptr<cc::ContextProvider> | 45 virtual scoped_refptr<cc::ContextProvider> |
47 OffscreenContextProviderForCompositorThread() = 0; | 46 OffscreenContextProviderForCompositorThread() = 0; |
48 | 47 |
49 // This hook is for testing. | 48 // This hook is for testing. |
50 virtual void DidFailToInitializeOutputSurface() {} | 49 virtual void DidFailToInitializeOutputSurface() {} |
51 | 50 |
52 protected: | 51 protected: |
53 virtual ~LayerTreeHostClient() {} | 52 virtual ~LayerTreeHostClient() {} |
54 }; | 53 }; |
55 | 54 |
56 } // namespace cc | 55 } // namespace cc |
57 | 56 |
58 #endif // CC_TREES_LAYER_TREE_HOST_CLIENT_H_ | 57 #endif // CC_TREES_LAYER_TREE_HOST_CLIENT_H_ |
OLD | NEW |