| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // Defers commits until it is reset. It is only supported when using a | 58 // Defers commits until it is reset. It is only supported when using a |
| 59 // scheduler. | 59 // scheduler. |
| 60 virtual void SetDeferCommits(bool defer_commits) = 0; | 60 virtual void SetDeferCommits(bool defer_commits) = 0; |
| 61 | 61 |
| 62 virtual void MainThreadHasStoppedFlinging() = 0; | 62 virtual void MainThreadHasStoppedFlinging() = 0; |
| 63 | 63 |
| 64 virtual bool CommitRequested() const = 0; | 64 virtual bool CommitRequested() const = 0; |
| 65 virtual bool BeginMainFrameRequested() const = 0; | 65 virtual bool BeginMainFrameRequested() const = 0; |
| 66 | 66 |
| 67 // Must be called before using the proxy. | 67 // Must be called before using the proxy. |
| 68 virtual void Start( | 68 virtual void Start() = 0; |
| 69 std::unique_ptr<BeginFrameSource> external_begin_frame_source) = 0; | 69 // Must be called before deleting the proxy. |
| 70 virtual void Stop() = 0; // Must be called before deleting the proxy. | 70 virtual void Stop() = 0; |
| 71 | 71 |
| 72 virtual void SetMutator(std::unique_ptr<LayerTreeMutator> mutator) = 0; | 72 virtual void SetMutator(std::unique_ptr<LayerTreeMutator> mutator) = 0; |
| 73 | 73 |
| 74 virtual bool SupportsImplScrolling() const = 0; | 74 virtual bool SupportsImplScrolling() const = 0; |
| 75 | 75 |
| 76 virtual void UpdateTopControlsState(TopControlsState constraints, | 76 virtual void UpdateTopControlsState(TopControlsState constraints, |
| 77 TopControlsState current, | 77 TopControlsState current, |
| 78 bool animate) = 0; | 78 bool animate) = 0; |
| 79 | 79 |
| 80 // Testing hooks | 80 // Testing hooks |
| 81 virtual bool MainFrameWillHappenForTesting() = 0; | 81 virtual bool MainFrameWillHappenForTesting() = 0; |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace cc | 84 } // namespace cc |
| 85 | 85 |
| 86 #endif // CC_TREES_PROXY_H_ | 86 #endif // CC_TREES_PROXY_H_ |
| OLD | NEW |