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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 bool IsSurfaceAvailableForCopy() const override; | 103 bool IsSurfaceAvailableForCopy() const override; |
104 void Show() override; | 104 void Show() override; |
105 void Hide() override; | 105 void Hide() override; |
106 bool IsShowing() override; | 106 bool IsShowing() override; |
107 gfx::Rect GetViewBounds() const override; | 107 gfx::Rect GetViewBounds() const override; |
108 gfx::Size GetPhysicalBackingSize() const override; | 108 gfx::Size GetPhysicalBackingSize() const override; |
109 bool DoTopControlsShrinkBlinkSize() const override; | 109 bool DoTopControlsShrinkBlinkSize() const override; |
110 float GetTopControlsHeight() const override; | 110 float GetTopControlsHeight() const override; |
111 void UpdateCursor(const WebCursor& cursor) override; | 111 void UpdateCursor(const WebCursor& cursor) override; |
112 void SetIsLoading(bool is_loading) override; | 112 void SetIsLoading(bool is_loading) override; |
113 void TextInputStateChanged( | 113 void NotifyTextInputStateChanged() override; |
114 const ViewHostMsg_TextInputState_Params& params) override; | |
115 void ImeCancelComposition() override; | 114 void ImeCancelComposition() override; |
116 void ImeCompositionRangeChanged( | 115 void ImeCompositionRangeChanged( |
117 const gfx::Range& range, | 116 const gfx::Range& range, |
118 const std::vector<gfx::Rect>& character_bounds) override; | 117 const std::vector<gfx::Rect>& character_bounds) override; |
119 void FocusedNodeChanged(bool is_editable_node) override; | 118 void FocusedNodeChanged(bool is_editable_node) override; |
120 void RenderProcessGone(base::TerminationStatus status, | 119 void RenderProcessGone(base::TerminationStatus status, |
121 int error_code) override; | 120 int error_code) override; |
122 void Destroy() override; | 121 void Destroy() override; |
123 void SetTooltipText(const base::string16& tooltip_text) override; | 122 void SetTooltipText(const base::string16& tooltip_text) override; |
124 void SelectionChanged(const base::string16& text, | 123 void SelectionChanged(const base::string16& text, |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 gfx::Vector2dF last_scroll_offset_; | 423 gfx::Vector2dF last_scroll_offset_; |
425 | 424 |
426 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 425 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
427 | 426 |
428 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 427 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
429 }; | 428 }; |
430 | 429 |
431 } // namespace content | 430 } // namespace content |
432 | 431 |
433 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 432 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |