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_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 98 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
99 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; | 99 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; |
100 virtual float GetOverdrawBottomHeight() const OVERRIDE; | 100 virtual float GetOverdrawBottomHeight() const OVERRIDE; |
101 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 101 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
102 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 102 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
103 virtual void TextInputTypeChanged(ui::TextInputType type, | 103 virtual void TextInputTypeChanged(ui::TextInputType type, |
104 ui::TextInputMode input_mode, | 104 ui::TextInputMode input_mode, |
105 bool can_compose_inline) OVERRIDE; | 105 bool can_compose_inline) OVERRIDE; |
106 virtual void ImeCancelComposition() OVERRIDE; | 106 virtual void ImeCancelComposition() OVERRIDE; |
107 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; | 107 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; |
108 virtual void DidUpdateBackingStore( | |
109 const gfx::Rect& scroll_rect, | |
110 const gfx::Vector2d& scroll_delta, | |
111 const std::vector<gfx::Rect>& copy_rects, | |
112 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE; | |
113 virtual void RenderProcessGone(base::TerminationStatus status, | 108 virtual void RenderProcessGone(base::TerminationStatus status, |
114 int error_code) OVERRIDE; | 109 int error_code) OVERRIDE; |
115 virtual void Destroy() OVERRIDE; | 110 virtual void Destroy() OVERRIDE; |
116 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 111 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
117 virtual void SelectionChanged(const base::string16& text, | 112 virtual void SelectionChanged(const base::string16& text, |
118 size_t offset, | 113 size_t offset, |
119 const gfx::Range& range) OVERRIDE; | 114 const gfx::Range& range) OVERRIDE; |
120 virtual void SelectionBoundsChanged( | 115 virtual void SelectionBoundsChanged( |
121 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; | 116 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; |
122 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) OVERRIDE; | 117 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) OVERRIDE; |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 }; | 368 }; |
374 | 369 |
375 scoped_ptr<LastFrameInfo> last_frame_info_; | 370 scoped_ptr<LastFrameInfo> last_frame_info_; |
376 | 371 |
377 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 372 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
378 }; | 373 }; |
379 | 374 |
380 } // namespace content | 375 } // namespace content |
381 | 376 |
382 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 377 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |