| 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" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 virtual void renderingStats(WebRenderingStats&) const OVERRIDE; | 51 virtual void renderingStats(WebRenderingStats&) const OVERRIDE; |
| 52 virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontH
eight); | 52 virtual void setFontAtlas(SkBitmap, WebRect asciiToRectTable[128], int fontH
eight); |
| 53 virtual void setFontAtlas(WebRect asciiToRectTable[128], const SkBitmap&, in
t fontHeight); | 53 virtual void setFontAtlas(WebRect asciiToRectTable[128], const SkBitmap&, in
t fontHeight); |
| 54 virtual void loseCompositorContext(int numTimes) OVERRIDE; | 54 virtual void loseCompositorContext(int numTimes) OVERRIDE; |
| 55 | 55 |
| 56 // cc::LayerTreeHostClient implementation. | 56 // cc::LayerTreeHostClient implementation. |
| 57 virtual void willBeginFrame() OVERRIDE; | 57 virtual void willBeginFrame() OVERRIDE; |
| 58 virtual void didBeginFrame() OVERRIDE; | 58 virtual void didBeginFrame() OVERRIDE; |
| 59 virtual void animate(double monotonicFrameBeginTime) OVERRIDE; | 59 virtual void animate(double monotonicFrameBeginTime) OVERRIDE; |
| 60 virtual void layout() OVERRIDE; | 60 virtual void layout() OVERRIDE; |
| 61 virtual void applyScrollAndScale(const cc::IntSize& scrollDelta, float pageS
cale) OVERRIDE; | 61 virtual void applyScrollAndScale(gfx::Vector2d scrollDelta, float pageScale)
OVERRIDE; |
| 62 virtual scoped_ptr<WebCompositorOutputSurface> createOutputSurface() OVERRID
E; | 62 virtual scoped_ptr<WebCompositorOutputSurface> createOutputSurface() OVERRID
E; |
| 63 virtual void didRecreateOutputSurface(bool success) OVERRIDE; | 63 virtual void didRecreateOutputSurface(bool success) OVERRIDE; |
| 64 virtual scoped_ptr<cc::InputHandler> createInputHandler() OVERRIDE; | 64 virtual scoped_ptr<cc::InputHandler> createInputHandler() OVERRIDE; |
| 65 virtual void willCommit() OVERRIDE; | 65 virtual void willCommit() OVERRIDE; |
| 66 virtual void didCommit() OVERRIDE; | 66 virtual void didCommit() OVERRIDE; |
| 67 virtual void didCommitAndDrawFrame() OVERRIDE; | 67 virtual void didCommitAndDrawFrame() OVERRIDE; |
| 68 virtual void didCompleteSwapBuffers() OVERRIDE; | 68 virtual void didCompleteSwapBuffers() OVERRIDE; |
| 69 virtual void scheduleComposite() OVERRIDE; | 69 virtual void scheduleComposite() OVERRIDE; |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 WebLayerTreeViewClient* m_client; | 72 WebLayerTreeViewClient* m_client; |
| 73 scoped_ptr<cc::LayerTreeHost> m_layerTreeHost; | 73 scoped_ptr<cc::LayerTreeHost> m_layerTreeHost; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace WebKit | 76 } // namespace WebKit |
| 77 | 77 |
| 78 #endif // WebLayerTreeViewImpl_h | 78 #endif // WebLayerTreeViewImpl_h |
| OLD | NEW |