OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 | 10 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 virtual void ImeCancelComposition() OVERRIDE; | 63 virtual void ImeCancelComposition() OVERRIDE; |
64 virtual void DidUpdateBackingStore( | 64 virtual void DidUpdateBackingStore( |
65 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, | 65 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, |
66 const std::vector<gfx::Rect>& copy_rects) OVERRIDE; | 66 const std::vector<gfx::Rect>& copy_rects) OVERRIDE; |
67 virtual void RenderViewGone(base::TerminationStatus status, | 67 virtual void RenderViewGone(base::TerminationStatus status, |
68 int error_code) OVERRIDE; | 68 int error_code) OVERRIDE; |
69 virtual void Destroy() OVERRIDE; | 69 virtual void Destroy() OVERRIDE; |
70 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; | 70 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; |
71 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; | 71 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; |
72 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; | 72 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; |
73 virtual void AcceleratedSurfaceBuffersSwapped( | |
74 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, | |
75 int gpu_host_id) OVERRIDE; | |
76 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 73 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
77 virtual void AcceleratedSurfaceNew( | 74 virtual void AcceleratedSurfaceNew( |
78 int32 width, | 75 int32 width, |
79 int32 height, | 76 int32 height, |
80 uint64* surface_id, | 77 uint64* surface_id, |
81 TransportDIB::Handle* surface_handle) OVERRIDE; | 78 TransportDIB::Handle* surface_handle) OVERRIDE; |
| 79 virtual void AcceleratedSurfaceBuffersSwapped( |
| 80 uint64 surface_id, |
| 81 int32 route_id, |
| 82 int gpu_host_id) OVERRIDE; |
82 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; | 83 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; |
83 #endif | 84 #endif |
84 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 85 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
85 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 86 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
86 virtual gfx::Rect GetRootWindowBounds() OVERRIDE; | 87 virtual gfx::Rect GetRootWindowBounds() OVERRIDE; |
87 virtual void SetVisuallyDeemphasized(const SkColor* color, | 88 virtual void SetVisuallyDeemphasized(const SkColor* color, |
88 bool animate) OVERRIDE; | 89 bool animate) OVERRIDE; |
89 virtual void UnhandledWheelEvent( | 90 virtual void UnhandledWheelEvent( |
90 const WebKit::WebMouseWheelEvent& event) OVERRIDE; | 91 const WebKit::WebMouseWheelEvent& event) OVERRIDE; |
91 virtual void SetHasHorizontalScrollbar( | 92 virtual void SetHasHorizontalScrollbar( |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 155 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
155 accelerated_surface_containers_; | 156 accelerated_surface_containers_; |
156 #endif | 157 #endif |
157 | 158 |
158 bool skip_schedule_paint_; | 159 bool skip_schedule_paint_; |
159 | 160 |
160 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 161 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
161 }; | 162 }; |
162 | 163 |
163 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 164 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |