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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; | 113 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; |
114 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) OVERRIDE; | 114 virtual void CreatePluginContainer(gfx::PluginWindowHandle id) OVERRIDE; |
115 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; | 115 virtual void DestroyPluginContainer(gfx::PluginWindowHandle id) OVERRIDE; |
116 virtual void ProcessTouchAck(WebKit::WebInputEvent::Type type, | 116 virtual void ProcessTouchAck(WebKit::WebInputEvent::Type type, |
117 bool processed) OVERRIDE; | 117 bool processed) OVERRIDE; |
118 virtual void SetHasHorizontalScrollbar( | 118 virtual void SetHasHorizontalScrollbar( |
119 bool has_horizontal_scrollbar) OVERRIDE; | 119 bool has_horizontal_scrollbar) OVERRIDE; |
120 virtual void SetScrollOffsetPinning( | 120 virtual void SetScrollOffsetPinning( |
121 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 121 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
122 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 122 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
123 virtual gfx::Rect GetRootWindowBounds() OVERRIDE; | 123 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
124 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 124 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
125 virtual bool LockMouse() OVERRIDE; | 125 virtual bool LockMouse() OVERRIDE; |
126 virtual void UnlockMouse() OVERRIDE; | 126 virtual void UnlockMouse() OVERRIDE; |
127 virtual void OnAccessibilityNotifications( | 127 virtual void OnAccessibilityNotifications( |
128 const std::vector<AccessibilityHostMsg_NotificationParams>& params) | 128 const std::vector<AccessibilityHostMsg_NotificationParams>& params) |
129 OVERRIDE; | 129 OVERRIDE; |
130 | 130 |
131 // ActiveWindowWatcherXObserver implementation. | 131 // ActiveWindowWatcherXObserver implementation. |
132 virtual void ActiveWindowChanged(GdkWindow* active_window) OVERRIDE; | 132 virtual void ActiveWindowChanged(GdkWindow* active_window) OVERRIDE; |
133 | 133 |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 GdkEventButton* last_mouse_down_; | 311 GdkEventButton* last_mouse_down_; |
312 | 312 |
313 // Instance of accessibility information for the root of the AtkObject | 313 // Instance of accessibility information for the root of the AtkObject |
314 // tree representation of the WebKit render tree. | 314 // tree representation of the WebKit render tree. |
315 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 315 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
316 | 316 |
317 ui::GtkSignalRegistrar signals_; | 317 ui::GtkSignalRegistrar signals_; |
318 }; | 318 }; |
319 | 319 |
320 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 320 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |