| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 virtual void WasShown() OVERRIDE; | 76 virtual void WasShown() OVERRIDE; |
| 77 virtual void WasHidden() OVERRIDE; | 77 virtual void WasHidden() OVERRIDE; |
| 78 virtual void MovePluginWindows( | 78 virtual void MovePluginWindows( |
| 79 const gfx::Vector2d& scroll_offset, | 79 const gfx::Vector2d& scroll_offset, |
| 80 const std::vector<WebPluginGeometry>& moves) OVERRIDE; | 80 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
| 81 virtual void Focus() OVERRIDE; | 81 virtual void Focus() OVERRIDE; |
| 82 virtual void Blur() OVERRIDE; | 82 virtual void Blur() OVERRIDE; |
| 83 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 83 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 84 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 84 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 85 virtual void TextInputTypeChanged(ui::TextInputType type, | 85 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 86 bool can_compose_inline, | 86 ui::TextInputMode input_mode, |
| 87 ui::TextInputMode input_mode) OVERRIDE; | 87 bool can_compose_inline) OVERRIDE; |
| 88 virtual void ImeCancelComposition() OVERRIDE; | 88 virtual void ImeCancelComposition() OVERRIDE; |
| 89 virtual void DidUpdateBackingStore( | 89 virtual void DidUpdateBackingStore( |
| 90 const gfx::Rect& scroll_rect, | 90 const gfx::Rect& scroll_rect, |
| 91 const gfx::Vector2d& scroll_delta, | 91 const gfx::Vector2d& scroll_delta, |
| 92 const std::vector<gfx::Rect>& copy_rects, | 92 const std::vector<gfx::Rect>& copy_rects, |
| 93 const ui::LatencyInfo& latency_info) OVERRIDE; | 93 const ui::LatencyInfo& latency_info) OVERRIDE; |
| 94 virtual void RenderProcessGone(base::TerminationStatus status, | 94 virtual void RenderProcessGone(base::TerminationStatus status, |
| 95 int error_code) OVERRIDE; | 95 int error_code) OVERRIDE; |
| 96 virtual void Destroy() OVERRIDE; | 96 virtual void Destroy() OVERRIDE; |
| 97 virtual void WillDestroyRenderWidget(RenderWidgetHost* rwh) {} | 97 virtual void WillDestroyRenderWidget(RenderWidgetHost* rwh) {} |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 333 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
| 334 | 334 |
| 335 ui::GtkSignalRegistrar signals_; | 335 ui::GtkSignalRegistrar signals_; |
| 336 | 336 |
| 337 ui::LatencyInfo software_latency_info_; | 337 ui::LatencyInfo software_latency_info_; |
| 338 }; | 338 }; |
| 339 | 339 |
| 340 } // namespace content | 340 } // namespace content |
| 341 | 341 |
| 342 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 342 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
| OLD | NEW |