| 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(WebKit::WebInputEvent::Type type, | 119 virtual void ProcessTouchAck(bool processed) OVERRIDE; |
| 120 bool processed) OVERRIDE; | |
| 121 virtual void SetHasHorizontalScrollbar( | 120 virtual void SetHasHorizontalScrollbar( |
| 122 bool has_horizontal_scrollbar) OVERRIDE; | 121 bool has_horizontal_scrollbar) OVERRIDE; |
| 123 virtual void SetScrollOffsetPinning( | 122 virtual void SetScrollOffsetPinning( |
| 124 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 123 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
| 125 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 124 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
| 126 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 125 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
| 127 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 126 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
| 128 virtual bool LockMouse() OVERRIDE; | 127 virtual bool LockMouse() OVERRIDE; |
| 129 virtual void UnlockMouse() OVERRIDE; | 128 virtual void UnlockMouse() OVERRIDE; |
| 130 virtual void OnAccessibilityNotifications( | 129 virtual void OnAccessibilityNotifications( |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 // Instance of accessibility information for the root of the AtkObject | 316 // Instance of accessibility information for the root of the AtkObject |
| 318 // tree representation of the WebKit render tree. | 317 // tree representation of the WebKit render tree. |
| 319 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 318 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
| 320 | 319 |
| 321 ui::GtkSignalRegistrar signals_; | 320 ui::GtkSignalRegistrar signals_; |
| 322 }; | 321 }; |
| 323 | 322 |
| 324 } // namespace content | 323 } // namespace content |
| 325 | 324 |
| 326 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 325 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
| OLD | NEW |