OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_GTK_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
7 | 7 |
8 #include <gdk/gdk.h> | 8 #include <gdk/gdk.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 virtual void AcceleratedSurfaceBuffersSwapped( | 109 virtual void AcceleratedSurfaceBuffersSwapped( |
110 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, | 110 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, |
111 int gpu_host_id) OVERRIDE; | 111 int gpu_host_id) OVERRIDE; |
112 virtual void AcceleratedSurfacePostSubBuffer( | 112 virtual void AcceleratedSurfacePostSubBuffer( |
113 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, | 113 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, |
114 int gpu_host_id) OVERRIDE; | 114 int gpu_host_id) OVERRIDE; |
115 virtual void AcceleratedSurfaceSuspend() OVERRIDE; | 115 virtual void AcceleratedSurfaceSuspend() OVERRIDE; |
116 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; | 116 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; |
117 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) OVERRIDE; | 117 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) OVERRIDE; |
118 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; | 118 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; |
119 virtual void ProcessTouchAck(bool processed) OVERRIDE; | |
120 virtual void SetHasHorizontalScrollbar( | 119 virtual void SetHasHorizontalScrollbar( |
121 bool has_horizontal_scrollbar) OVERRIDE; | 120 bool has_horizontal_scrollbar) OVERRIDE; |
122 virtual void SetScrollOffsetPinning( | 121 virtual void SetScrollOffsetPinning( |
123 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 122 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
124 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 123 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
125 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 124 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
126 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 125 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
127 virtual bool LockMouse() OVERRIDE; | 126 virtual bool LockMouse() OVERRIDE; |
128 virtual void UnlockMouse() OVERRIDE; | 127 virtual void UnlockMouse() OVERRIDE; |
129 virtual void OnAccessibilityNotifications( | 128 virtual void OnAccessibilityNotifications( |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 // Instance of accessibility information for the root of the AtkObject | 315 // Instance of accessibility information for the root of the AtkObject |
317 // tree representation of the WebKit render tree. | 316 // tree representation of the WebKit render tree. |
318 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 317 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
319 | 318 |
320 ui::GtkSignalRegistrar signals_; | 319 ui::GtkSignalRegistrar signals_; |
321 }; | 320 }; |
322 | 321 |
323 } // namespace content | 322 } // namespace content |
324 | 323 |
325 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 324 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |