| 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 WebLayerTreeViewImpl_h | 5 #ifndef WebLayerTreeViewImpl_h |
| 6 #define WebLayerTreeViewImpl_h | 6 #define WebLayerTreeViewImpl_h |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/layer_tree_host_client.h" | 9 #include "cc/layer_tree_host_client.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayerTreeView.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayerTreeView.h" |
| 11 | 11 |
| 12 namespace cc { | 12 namespace cc { |
| 13 class CCLayerTreeHost; | 13 class LayerTreeHost; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace WebKit { | 16 namespace WebKit { |
| 17 class WebLayer; | 17 class WebLayer; |
| 18 class WebLayerTreeViewClient; | 18 class WebLayerTreeViewClient; |
| 19 class WebLayerTreeViewClientAdapter; | 19 class WebLayerTreeViewClientAdapter; |
| 20 | 20 |
| 21 class WebLayerTreeViewImpl : public WebLayerTreeView, public cc::CCLayerTreeHost
Client { | 21 class WebLayerTreeViewImpl : public WebLayerTreeView, public cc::LayerTreeHostCl
ient { |
| 22 public: | 22 public: |
| 23 explicit WebLayerTreeViewImpl(WebLayerTreeViewClient*); | 23 explicit WebLayerTreeViewImpl(WebLayerTreeViewClient*); |
| 24 virtual ~WebLayerTreeViewImpl(); | 24 virtual ~WebLayerTreeViewImpl(); |
| 25 | 25 |
| 26 bool initialize(const Settings&); | 26 bool initialize(const Settings&); |
| 27 | 27 |
| 28 // WebLayerTreeView implementation. | 28 // WebLayerTreeView implementation. |
| 29 virtual void setSurfaceReady() OVERRIDE; | 29 virtual void setSurfaceReady() OVERRIDE; |
| 30 virtual void setRootLayer(const WebLayer&) OVERRIDE; | 30 virtual void setRootLayer(const WebLayer&) OVERRIDE; |
| 31 virtual void clearRootLayer() OVERRIDE; | 31 virtual void clearRootLayer() OVERRIDE; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 43 virtual void setNeedsRedraw() OVERRIDE; | 43 virtual void setNeedsRedraw() OVERRIDE; |
| 44 virtual bool commitRequested() const OVERRIDE; | 44 virtual bool commitRequested() const OVERRIDE; |
| 45 virtual void composite() OVERRIDE; | 45 virtual void composite() OVERRIDE; |
| 46 virtual void updateAnimations(double frameBeginTime) OVERRIDE; | 46 virtual void updateAnimations(double frameBeginTime) OVERRIDE; |
| 47 virtual bool compositeAndReadback(void *pixels, const WebRect&) OVERRIDE; | 47 virtual bool compositeAndReadback(void *pixels, const WebRect&) OVERRIDE; |
| 48 virtual void finishAllRendering() OVERRIDE; | 48 virtual void finishAllRendering() OVERRIDE; |
| 49 virtual void renderingStats(WebRenderingStats&) const OVERRIDE; | 49 virtual void renderingStats(WebRenderingStats&) const OVERRIDE; |
| 50 virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontH
eight) OVERRIDE; | 50 virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontH
eight) OVERRIDE; |
| 51 virtual void loseCompositorContext(int numTimes) OVERRIDE; | 51 virtual void loseCompositorContext(int numTimes) OVERRIDE; |
| 52 | 52 |
| 53 // cc::CCLayerTreeHostClient implementation. | 53 // cc::LayerTreeHostClient implementation. |
| 54 virtual void willBeginFrame() OVERRIDE; | 54 virtual void willBeginFrame() OVERRIDE; |
| 55 virtual void didBeginFrame() OVERRIDE; | 55 virtual void didBeginFrame() OVERRIDE; |
| 56 virtual void animate(double monotonicFrameBeginTime) OVERRIDE; | 56 virtual void animate(double monotonicFrameBeginTime) OVERRIDE; |
| 57 virtual void layout() OVERRIDE; | 57 virtual void layout() OVERRIDE; |
| 58 virtual void applyScrollAndScale(const cc::IntSize& scrollDelta, float pageS
cale) OVERRIDE; | 58 virtual void applyScrollAndScale(const cc::IntSize& scrollDelta, float pageS
cale) OVERRIDE; |
| 59 virtual scoped_ptr<WebCompositorOutputSurface> createOutputSurface() OVERRID
E; | 59 virtual scoped_ptr<WebCompositorOutputSurface> createOutputSurface() OVERRID
E; |
| 60 virtual void didRecreateOutputSurface(bool success) OVERRIDE; | 60 virtual void didRecreateOutputSurface(bool success) OVERRIDE; |
| 61 virtual scoped_ptr<cc::CCInputHandler> createInputHandler() OVERRIDE; | 61 virtual scoped_ptr<cc::InputHandler> createInputHandler() OVERRIDE; |
| 62 virtual void willCommit() OVERRIDE; | 62 virtual void willCommit() OVERRIDE; |
| 63 virtual void didCommit() OVERRIDE; | 63 virtual void didCommit() OVERRIDE; |
| 64 virtual void didCommitAndDrawFrame() OVERRIDE; | 64 virtual void didCommitAndDrawFrame() OVERRIDE; |
| 65 virtual void didCompleteSwapBuffers() OVERRIDE; | 65 virtual void didCompleteSwapBuffers() OVERRIDE; |
| 66 virtual void scheduleComposite() OVERRIDE; | 66 virtual void scheduleComposite() OVERRIDE; |
| 67 | 67 |
| 68 private: | 68 private: |
| 69 WebLayerTreeViewClient* m_client; | 69 WebLayerTreeViewClient* m_client; |
| 70 scoped_ptr<cc::CCLayerTreeHost> m_layerTreeHost; | 70 scoped_ptr<cc::LayerTreeHost> m_layerTreeHost; |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace WebKit | 73 } // namespace WebKit |
| 74 | 74 |
| 75 #endif // WebLayerTreeViewImpl_h | 75 #endif // WebLayerTreeViewImpl_h |
| OLD | NEW |