| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 SimCompositor_h | 5 #ifndef SimCompositor_h |
| 6 #define SimCompositor_h | 6 #define SimCompositor_h |
| 7 | 7 |
| 8 #include "public/platform/WebLayerTreeView.h" | 8 #include "public/platform/WebLayerTreeView.h" |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // Note: This also does not support compositor driven animations. | 23 // Note: This also does not support compositor driven animations. |
| 24 class SimCompositor final : public WebLayerTreeView { | 24 class SimCompositor final : public WebLayerTreeView { |
| 25 public: | 25 public: |
| 26 explicit SimCompositor(); | 26 explicit SimCompositor(); |
| 27 ~SimCompositor(); | 27 ~SimCompositor(); |
| 28 | 28 |
| 29 void setWebViewImpl(WebViewImpl&); | 29 void setWebViewImpl(WebViewImpl&); |
| 30 | 30 |
| 31 // Execute the BeginMainFrame processing steps, an approximation of what | 31 // Execute the BeginMainFrame processing steps, an approximation of what |
| 32 // cc::ThreadProxy::BeginMainFrame would do. | 32 // cc::ThreadProxy::BeginMainFrame would do. |
| 33 SimDisplayItemList beginFrame(); | 33 SimDisplayItemList beginFrame(double dt = 0.016); |
| 34 | 34 |
| 35 bool needsBeginFrame() const { return m_needsBeginFrame; } | 35 bool needsBeginFrame() const { return m_needsBeginFrame; } |
| 36 bool deferCommits() const { return m_deferCommits; } | 36 bool deferCommits() const { return m_deferCommits; } |
| 37 | 37 |
| 38 bool hasSelection() const { return m_hasSelection; } | 38 bool hasSelection() const { return m_hasSelection; } |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 void setNeedsBeginFrame() override; | 41 void setNeedsBeginFrame() override; |
| 42 void setNeedsCompositorUpdate() override; | 42 void setNeedsCompositorUpdate() override; |
| 43 void setDeferCommits(bool) override; | 43 void setDeferCommits(bool) override; |
| 44 void registerSelection(const WebSelection&) override; | 44 void registerSelection(const WebSelection&) override; |
| 45 void clearSelection() override; | 45 void clearSelection() override; |
| 46 | 46 |
| 47 bool m_needsBeginFrame; | 47 bool m_needsBeginFrame; |
| 48 bool m_deferCommits; | 48 bool m_deferCommits; |
| 49 bool m_hasSelection; | 49 bool m_hasSelection; |
| 50 WebViewImpl* m_webViewImpl; | 50 WebViewImpl* m_webViewImpl; |
| 51 double m_lastFrameTimeMonotonic; | 51 double m_lastFrameTimeMonotonic; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace blink | 54 } // namespace blink |
| 55 | 55 |
| 56 #endif | 56 #endif |
| OLD | NEW |