| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/threading/platform_thread.h" | 14 #include "base/threading/platform_thread.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "base/values.h" | 16 #include "base/values.h" |
| 17 #include "cc/base/cc_export.h" | 17 #include "cc/base/cc_export.h" |
| 18 #include "cc/input/top_controls_state.h" | 18 #include "cc/input/top_controls_state.h" |
| 19 #include "cc/scheduler/begin_frame_source.h" |
| 19 #include "cc/trees/task_runner_provider.h" | 20 #include "cc/trees/task_runner_provider.h" |
| 20 | 21 |
| 21 namespace gfx { | 22 namespace gfx { |
| 22 class Rect; | 23 class Rect; |
| 23 class Vector2d; | 24 class Vector2d; |
| 24 } | 25 } |
| 25 | 26 |
| 26 namespace cc { | 27 namespace cc { |
| 28 class BeginFrameSource; |
| 27 class LayerTreeDebugState; | 29 class LayerTreeDebugState; |
| 28 class OutputSurface; | 30 class OutputSurface; |
| 29 struct RendererCapabilities; | 31 struct RendererCapabilities; |
| 30 | 32 |
| 31 // Abstract interface responsible for proxying commands from the main-thread | 33 // Abstract interface responsible for proxying commands from the main-thread |
| 32 // side of the compositor over to the compositor implementation. | 34 // side of the compositor over to the compositor implementation. |
| 33 class CC_EXPORT Proxy { | 35 class CC_EXPORT Proxy { |
| 34 public: | 36 public: |
| 35 virtual ~Proxy() {} | 37 virtual ~Proxy() {} |
| 36 | 38 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 62 // Defers commits until it is reset. It is only supported when using a | 64 // Defers commits until it is reset. It is only supported when using a |
| 63 // scheduler. | 65 // scheduler. |
| 64 virtual void SetDeferCommits(bool defer_commits) = 0; | 66 virtual void SetDeferCommits(bool defer_commits) = 0; |
| 65 | 67 |
| 66 virtual void MainThreadHasStoppedFlinging() = 0; | 68 virtual void MainThreadHasStoppedFlinging() = 0; |
| 67 | 69 |
| 68 virtual bool CommitRequested() const = 0; | 70 virtual bool CommitRequested() const = 0; |
| 69 virtual bool BeginMainFrameRequested() const = 0; | 71 virtual bool BeginMainFrameRequested() const = 0; |
| 70 | 72 |
| 71 // Must be called before using the proxy. | 73 // Must be called before using the proxy. |
| 72 virtual void Start() = 0; | 74 virtual void Start( |
| 75 scoped_ptr<BeginFrameSource> external_begin_frame_source) = 0; |
| 73 virtual void Stop() = 0; // Must be called before deleting the proxy. | 76 virtual void Stop() = 0; // Must be called before deleting the proxy. |
| 74 | 77 |
| 75 virtual bool SupportsImplScrolling() const = 0; | 78 virtual bool SupportsImplScrolling() const = 0; |
| 76 | 79 |
| 77 virtual void SetChildrenNeedBeginFrames(bool children_need_begin_frames) = 0; | 80 virtual void SetChildrenNeedBeginFrames(bool children_need_begin_frames) = 0; |
| 78 | 81 |
| 79 virtual void SetAuthoritativeVSyncInterval( | 82 virtual void SetAuthoritativeVSyncInterval( |
| 80 const base::TimeDelta& interval) = 0; | 83 const base::TimeDelta& interval) = 0; |
| 81 | 84 |
| 82 virtual void UpdateTopControlsState(TopControlsState constraints, | 85 virtual void UpdateTopControlsState(TopControlsState constraints, |
| 83 TopControlsState current, | 86 TopControlsState current, |
| 84 bool animate) = 0; | 87 bool animate) = 0; |
| 85 | 88 |
| 86 // Testing hooks | 89 // Testing hooks |
| 87 virtual bool MainFrameWillHappenForTesting() = 0; | 90 virtual bool MainFrameWillHappenForTesting() = 0; |
| 88 }; | 91 }; |
| 89 | 92 |
| 90 } // namespace cc | 93 } // namespace cc |
| 91 | 94 |
| 92 #endif // CC_TREES_PROXY_H_ | 95 #endif // CC_TREES_PROXY_H_ |
| OLD | NEW |