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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 bool can_compose_inline) OVERRIDE; | 86 bool can_compose_inline) OVERRIDE; |
87 virtual void ImeCancelComposition() OVERRIDE; | 87 virtual void ImeCancelComposition() OVERRIDE; |
88 virtual void ImeCompositionRangeChanged( | 88 virtual void ImeCompositionRangeChanged( |
89 const ui::Range& range, | 89 const ui::Range& range, |
90 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; | 90 const std::vector<gfx::Rect>& character_bounds) OVERRIDE; |
91 virtual void DidUpdateBackingStore( | 91 virtual void DidUpdateBackingStore( |
92 const gfx::Rect& scroll_rect, | 92 const gfx::Rect& scroll_rect, |
93 const gfx::Vector2d& scroll_delta, | 93 const gfx::Vector2d& scroll_delta, |
94 const std::vector<gfx::Rect>& copy_rects, | 94 const std::vector<gfx::Rect>& copy_rects, |
95 const ui::LatencyInfo& latency_info) OVERRIDE; | 95 const ui::LatencyInfo& latency_info) OVERRIDE; |
96 virtual void RenderViewGone(base::TerminationStatus status, | 96 virtual void RenderProcessGone(base::TerminationStatus status, |
97 int error_code) OVERRIDE; | 97 int error_code) OVERRIDE; |
98 virtual void Destroy() OVERRIDE; | 98 virtual void Destroy() OVERRIDE; |
99 virtual void WillDestroyRenderWidget(RenderWidgetHost* rwh) {} | 99 virtual void WillDestroyRenderWidget(RenderWidgetHost* rwh) {} |
100 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; | 100 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; |
101 virtual void SelectionChanged(const string16& text, | 101 virtual void SelectionChanged(const string16& text, |
102 size_t offset, | 102 size_t offset, |
103 const ui::Range& range) OVERRIDE; | 103 const ui::Range& range) OVERRIDE; |
104 virtual void SelectionBoundsChanged( | 104 virtual void SelectionBoundsChanged( |
105 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 105 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
106 virtual void ScrollOffsetChanged() OVERRIDE; | 106 virtual void ScrollOffsetChanged() OVERRIDE; |
107 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; | 107 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; | 335 scoped_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; |
336 | 336 |
337 ui::GtkSignalRegistrar signals_; | 337 ui::GtkSignalRegistrar signals_; |
338 | 338 |
339 ui::LatencyInfo software_latency_info_; | 339 ui::LatencyInfo software_latency_info_; |
340 }; | 340 }; |
341 | 341 |
342 } // namespace content | 342 } // namespace content |
343 | 343 |
344 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ | 344 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_GTK_H_ |
OLD | NEW |