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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 const std::vector<WebPluginGeometry>& moves) OVERRIDE; | 94 const std::vector<WebPluginGeometry>& moves) OVERRIDE; |
95 virtual void Focus() OVERRIDE; | 95 virtual void Focus() OVERRIDE; |
96 virtual void Blur() OVERRIDE; | 96 virtual void Blur() OVERRIDE; |
97 virtual bool HasFocus() const OVERRIDE; | 97 virtual bool HasFocus() const OVERRIDE; |
98 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; | 98 virtual bool IsSurfaceAvailableForCopy() const OVERRIDE; |
99 virtual void Show() OVERRIDE; | 99 virtual void Show() OVERRIDE; |
100 virtual void Hide() OVERRIDE; | 100 virtual void Hide() OVERRIDE; |
101 virtual bool IsShowing() OVERRIDE; | 101 virtual bool IsShowing() OVERRIDE; |
102 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 102 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
103 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; | 103 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; |
104 virtual float GetOverdrawBottomHeight() const OVERRIDE; | 104 virtual float GetTopControlsLayoutHeight() const OVERRIDE; |
105 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 105 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
106 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 106 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
107 virtual void TextInputStateChanged( | 107 virtual void TextInputStateChanged( |
108 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; | 108 const ViewHostMsg_TextInputState_Params& params) OVERRIDE; |
109 virtual void ImeCancelComposition() OVERRIDE; | 109 virtual void ImeCancelComposition() OVERRIDE; |
110 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; | 110 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; |
111 virtual void RenderProcessGone(base::TerminationStatus status, | 111 virtual void RenderProcessGone(base::TerminationStatus status, |
112 int error_code) OVERRIDE; | 112 int error_code) OVERRIDE; |
113 virtual void Destroy() OVERRIDE; | 113 virtual void Destroy() OVERRIDE; |
114 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 114 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 scoped_ptr<LastFrameInfo> last_frame_info_; | 391 scoped_ptr<LastFrameInfo> last_frame_info_; |
392 | 392 |
393 TextSurroundingSelectionCallback text_surrounding_selection_callback_; | 393 TextSurroundingSelectionCallback text_surrounding_selection_callback_; |
394 | 394 |
395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
396 }; | 396 }; |
397 | 397 |
398 } // namespace content | 398 } // namespace content |
399 | 399 |
400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |