| 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 CCSingleThreadProxy_h | 5 #ifndef CCSingleThreadProxy_h |
| 6 #define CCSingleThreadProxy_h | 6 #define CCSingleThreadProxy_h |
| 7 | 7 |
| 8 #include "CCAnimationEvents.h" | 8 #include "CCAnimationEvents.h" |
| 9 #include "CCLayerTreeHostImpl.h" | 9 #include "CCLayerTreeHostImpl.h" |
| 10 #include "CCProxy.h" | 10 #include "CCProxy.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 virtual void implSideRenderingStats(CCRenderingStats&) OVERRIDE; | 33 virtual void implSideRenderingStats(CCRenderingStats&) OVERRIDE; |
| 34 virtual const RendererCapabilities& rendererCapabilities() const OVERRIDE; | 34 virtual const RendererCapabilities& rendererCapabilities() const OVERRIDE; |
| 35 virtual void loseContext() OVERRIDE; | 35 virtual void loseContext() OVERRIDE; |
| 36 virtual void setNeedsAnimate() OVERRIDE; | 36 virtual void setNeedsAnimate() OVERRIDE; |
| 37 virtual void setNeedsCommit() OVERRIDE; | 37 virtual void setNeedsCommit() OVERRIDE; |
| 38 virtual void setNeedsRedraw() OVERRIDE; | 38 virtual void setNeedsRedraw() OVERRIDE; |
| 39 virtual bool commitRequested() const OVERRIDE; | 39 virtual bool commitRequested() const OVERRIDE; |
| 40 virtual void didAddAnimation() OVERRIDE; | 40 virtual void didAddAnimation() OVERRIDE; |
| 41 virtual void start() OVERRIDE; | 41 virtual void start() OVERRIDE; |
| 42 virtual void stop() OVERRIDE; | 42 virtual void stop() OVERRIDE; |
| 43 virtual size_t maxPartialTextureUpdates() const OVERRIDE { return std::numer
ic_limits<size_t>::max(); } | |
| 44 virtual void acquireLayerTextures() OVERRIDE { } | 43 virtual void acquireLayerTextures() OVERRIDE { } |
| 45 virtual void forceSerializeOnSwapBuffers() OVERRIDE; | 44 virtual void forceSerializeOnSwapBuffers() OVERRIDE; |
| 46 | 45 |
| 47 // CCLayerTreeHostImplClient implementation | 46 // CCLayerTreeHostImplClient implementation |
| 48 virtual void didLoseContextOnImplThread() OVERRIDE { } | 47 virtual void didLoseContextOnImplThread() OVERRIDE { } |
| 49 virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { ASSERT_NOT_REACH
ED(); } | 48 virtual void onSwapBuffersCompleteOnImplThread() OVERRIDE { ASSERT_NOT_REACH
ED(); } |
| 50 virtual void onVSyncParametersChanged(double monotonicTimebase, double inter
valInSeconds) OVERRIDE { } | 49 virtual void onVSyncParametersChanged(double monotonicTimebase, double inter
valInSeconds) OVERRIDE { } |
| 51 virtual void onCanDrawStateChanged(bool canDraw) OVERRIDE { } | 50 virtual void onCanDrawStateChanged(bool canDraw) OVERRIDE { } |
| 52 virtual void setNeedsRedrawOnImplThread() OVERRIDE { m_layerTreeHost->schedu
leComposite(); } | 51 virtual void setNeedsRedrawOnImplThread() OVERRIDE { m_layerTreeHost->schedu
leComposite(); } |
| 53 virtual void setNeedsCommitOnImplThread() OVERRIDE { m_layerTreeHost->schedu
leComposite(); } | 52 virtual void setNeedsCommitOnImplThread() OVERRIDE { m_layerTreeHost->schedu
leComposite(); } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 // satisfy assertion checks | 120 // satisfy assertion checks |
| 122 class DebugScopedSetImplThreadAndMainThreadBlocked { | 121 class DebugScopedSetImplThreadAndMainThreadBlocked { |
| 123 private: | 122 private: |
| 124 DebugScopedSetImplThread m_implThread; | 123 DebugScopedSetImplThread m_implThread; |
| 125 DebugScopedSetMainThreadBlocked m_mainThreadBlocked; | 124 DebugScopedSetMainThreadBlocked m_mainThreadBlocked; |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } // namespace WebCore | 127 } // namespace WebCore |
| 129 | 128 |
| 130 #endif | 129 #endif |
| OLD | NEW |