OLD | NEW |
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 <memory> | 8 #include <memory> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 namespace gfx { | 21 namespace gfx { |
22 class Rect; | 22 class Rect; |
23 class Vector2d; | 23 class Vector2d; |
24 } | 24 } |
25 | 25 |
26 namespace cc { | 26 namespace cc { |
27 class BeginFrameSource; | 27 class BeginFrameSource; |
28 class LayerTreeDebugState; | 28 class LayerTreeDebugState; |
29 class LayerTreeMutator; | 29 class LayerTreeMutator; |
30 class OutputSurface; | 30 class OutputSurface; |
| 31 struct RendererCapabilities; |
31 | 32 |
32 // Abstract interface responsible for proxying commands from the main-thread | 33 // Abstract interface responsible for proxying commands from the main-thread |
33 // side of the compositor over to the compositor implementation. | 34 // side of the compositor over to the compositor implementation. |
34 class CC_EXPORT Proxy { | 35 class CC_EXPORT Proxy { |
35 public: | 36 public: |
36 virtual ~Proxy() {} | 37 virtual ~Proxy() {} |
37 | 38 |
38 virtual bool IsStarted() const = 0; | 39 virtual bool IsStarted() const = 0; |
39 virtual bool CommitToActiveTree() const = 0; | 40 virtual bool CommitToActiveTree() const = 0; |
40 | 41 |
41 // Will call LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted | 42 // Will call LayerTreeHost::OnCreateAndInitializeOutputSurfaceAttempted |
42 // with the result of this function. | 43 // with the result of this function. |
43 virtual void SetOutputSurface(OutputSurface* output_surface) = 0; | 44 virtual void SetOutputSurface(OutputSurface* output_surface) = 0; |
44 | 45 |
45 virtual void ReleaseOutputSurface() = 0; | 46 virtual void ReleaseOutputSurface() = 0; |
46 | 47 |
47 virtual void SetVisible(bool visible) = 0; | 48 virtual void SetVisible(bool visible) = 0; |
48 | 49 |
| 50 virtual const RendererCapabilities& GetRendererCapabilities() const = 0; |
| 51 |
49 virtual void SetNeedsAnimate() = 0; | 52 virtual void SetNeedsAnimate() = 0; |
50 virtual void SetNeedsUpdateLayers() = 0; | 53 virtual void SetNeedsUpdateLayers() = 0; |
51 virtual void SetNeedsCommit() = 0; | 54 virtual void SetNeedsCommit() = 0; |
52 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0; | 55 virtual void SetNeedsRedraw(const gfx::Rect& damage_rect) = 0; |
53 virtual void SetNextCommitWaitsForActivation() = 0; | 56 virtual void SetNextCommitWaitsForActivation() = 0; |
54 | 57 |
55 virtual void NotifyInputThrottledUntilCommit() = 0; | 58 virtual void NotifyInputThrottledUntilCommit() = 0; |
56 | 59 |
57 // Defers commits until it is reset. It is only supported when using a | 60 // Defers commits until it is reset. It is only supported when using a |
58 // scheduler. | 61 // scheduler. |
(...skipping 17 matching lines...) Expand all Loading... |
76 TopControlsState current, | 79 TopControlsState current, |
77 bool animate) = 0; | 80 bool animate) = 0; |
78 | 81 |
79 // Testing hooks | 82 // Testing hooks |
80 virtual bool MainFrameWillHappenForTesting() = 0; | 83 virtual bool MainFrameWillHappenForTesting() = 0; |
81 }; | 84 }; |
82 | 85 |
83 } // namespace cc | 86 } // namespace cc |
84 | 87 |
85 #endif // CC_TREES_PROXY_H_ | 88 #endif // CC_TREES_PROXY_H_ |
OLD | NEW |