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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 64 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
65 virtual GdkEventButton* GetLastMouseDown() OVERRIDE; | 65 virtual GdkEventButton* GetLastMouseDown() OVERRIDE; |
66 virtual gfx::NativeView BuildInputMethodsGtkMenu() OVERRIDE; | 66 virtual gfx::NativeView BuildInputMethodsGtkMenu() OVERRIDE; |
67 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 67 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
68 | 68 |
69 // RenderWidgetHostViewPort implementation. | 69 // RenderWidgetHostViewPort implementation. |
70 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 70 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
71 const gfx::Rect& pos) OVERRIDE; | 71 const gfx::Rect& pos) OVERRIDE; |
72 virtual void InitAsFullscreen( | 72 virtual void InitAsFullscreen( |
73 RenderWidgetHostView* reference_host_view) OVERRIDE; | 73 RenderWidgetHostView* reference_host_view) OVERRIDE; |
74 virtual void WasRestored() OVERRIDE; | 74 virtual void WasShown() OVERRIDE; |
75 virtual void WasHidden() OVERRIDE; | 75 virtual void WasHidden() OVERRIDE; |
76 virtual void MovePluginWindows( | 76 virtual void MovePluginWindows( |
77 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; | 77 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; |
78 virtual void Focus() OVERRIDE; | 78 virtual void Focus() OVERRIDE; |
79 virtual void Blur() OVERRIDE; | 79 virtual void Blur() OVERRIDE; |
80 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 80 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
81 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 81 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
82 virtual void TextInputStateChanged(ui::TextInputType type, | 82 virtual void TextInputStateChanged(ui::TextInputType type, |
83 bool can_compose_inline) OVERRIDE; | 83 bool can_compose_inline) OVERRIDE; |
84 virtual void ImeCancelComposition() OVERRIDE; | 84 virtual void ImeCancelComposition() OVERRIDE; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 // Instance of accessibility information for the root of the AtkObject | 312 // Instance of accessibility information for the root of the AtkObject |
313 // tree representation of the WebKit render tree. | 313 // tree representation of the WebKit render tree. |
314 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 314 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
315 | 315 |
316 ui::GtkSignalRegistrar signals_; | 316 ui::GtkSignalRegistrar signals_; |
317 }; | 317 }; |
318 | 318 |
319 } // namespace content | 319 } // namespace content |
320 | 320 |
321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 321 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |