| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 virtual void compositeAndReadbackAsync( | 108 virtual void compositeAndReadbackAsync( |
| 109 blink::WebCompositeAndReadbackAsyncCallback* callback); | 109 blink::WebCompositeAndReadbackAsyncCallback* callback); |
| 110 virtual void finishAllRendering(); | 110 virtual void finishAllRendering(); |
| 111 virtual void setDeferCommits(bool defer_commits); | 111 virtual void setDeferCommits(bool defer_commits); |
| 112 virtual void registerForAnimations(blink::WebLayer* layer); | 112 virtual void registerForAnimations(blink::WebLayer* layer); |
| 113 virtual void registerViewportLayers( | 113 virtual void registerViewportLayers( |
| 114 const blink::WebLayer* pageScaleLayer, | 114 const blink::WebLayer* pageScaleLayer, |
| 115 const blink::WebLayer* innerViewportScrollLayer, | 115 const blink::WebLayer* innerViewportScrollLayer, |
| 116 const blink::WebLayer* outerViewportScrollLayer) OVERRIDE; | 116 const blink::WebLayer* outerViewportScrollLayer) OVERRIDE; |
| 117 virtual void clearViewportLayers() OVERRIDE; | 117 virtual void clearViewportLayers() OVERRIDE; |
| 118 virtual void registerSelection( |
| 119 const blink::WebSelectionBound& anchor, |
| 120 const blink::WebSelectionBound& focus) OVERRIDE; |
| 121 virtual void clearSelection() OVERRIDE; |
| 118 virtual void setShowFPSCounter(bool show); | 122 virtual void setShowFPSCounter(bool show); |
| 119 virtual void setShowPaintRects(bool show); | 123 virtual void setShowPaintRects(bool show); |
| 120 virtual void setShowDebugBorders(bool show); | 124 virtual void setShowDebugBorders(bool show); |
| 121 virtual void setContinuousPaintingEnabled(bool enabled); | 125 virtual void setContinuousPaintingEnabled(bool enabled); |
| 122 virtual void setShowScrollBottleneckRects(bool show); | 126 virtual void setShowScrollBottleneckRects(bool show); |
| 123 | 127 |
| 124 // cc::LayerTreeHostClient implementation. | 128 // cc::LayerTreeHostClient implementation. |
| 125 virtual void WillBeginMainFrame(int frame_id) OVERRIDE; | 129 virtual void WillBeginMainFrame(int frame_id) OVERRIDE; |
| 126 virtual void DidBeginMainFrame() OVERRIDE; | 130 virtual void DidBeginMainFrame() OVERRIDE; |
| 127 virtual void Animate(base::TimeTicks frame_begin_time) OVERRIDE; | 131 virtual void Animate(base::TimeTicks frame_begin_time) OVERRIDE; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 150 | 154 |
| 151 bool threaded_; | 155 bool threaded_; |
| 152 bool suppress_schedule_composite_; | 156 bool suppress_schedule_composite_; |
| 153 RenderWidget* widget_; | 157 RenderWidget* widget_; |
| 154 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; | 158 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; |
| 155 }; | 159 }; |
| 156 | 160 |
| 157 } // namespace content | 161 } // namespace content |
| 158 | 162 |
| 159 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 163 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| OLD | NEW |