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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 gfx::NativeViewAccessible GetNativeViewAccessible() override; | 101 gfx::NativeViewAccessible GetNativeViewAccessible() override; |
102 void Focus() override; | 102 void Focus() override; |
103 bool HasFocus() const override; | 103 bool HasFocus() const override; |
104 bool IsSurfaceAvailableForCopy() const override; | 104 bool IsSurfaceAvailableForCopy() const override; |
105 void Show() override; | 105 void Show() override; |
106 void Hide() override; | 106 void Hide() override; |
107 bool IsShowing() override; | 107 bool IsShowing() override; |
108 gfx::Rect GetViewBounds() const override; | 108 gfx::Rect GetViewBounds() const override; |
109 gfx::Size GetVisibleViewportSize() const override; | 109 gfx::Size GetVisibleViewportSize() const override; |
110 gfx::Size GetPhysicalBackingSize() const override; | 110 gfx::Size GetPhysicalBackingSize() const override; |
111 bool DoTopControlsShrinkBlinkSize() const override; | 111 bool DoBrowserControlsShrinkBlinkSize() const override; |
112 float GetTopControlsHeight() const override; | 112 float GetTopControlsHeight() const override; |
113 float GetBottomControlsHeight() const override; | 113 float GetBottomControlsHeight() const override; |
114 void UpdateCursor(const WebCursor& cursor) override; | 114 void UpdateCursor(const WebCursor& cursor) override; |
115 void SetIsLoading(bool is_loading) override; | 115 void SetIsLoading(bool is_loading) override; |
116 void TextInputStateChanged(const TextInputState& params) override; | 116 void TextInputStateChanged(const TextInputState& params) override; |
117 void ImeCancelComposition() override; | 117 void ImeCancelComposition() override; |
118 void ImeCompositionRangeChanged( | 118 void ImeCompositionRangeChanged( |
119 const gfx::Range& range, | 119 const gfx::Range& range, |
120 const std::vector<gfx::Rect>& character_bounds) override; | 120 const std::vector<gfx::Rect>& character_bounds) override; |
121 void FocusedNodeChanged(bool is_editable_node, | 121 void FocusedNodeChanged(bool is_editable_node, |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 gfx::Vector2dF last_scroll_offset_; | 375 gfx::Vector2dF last_scroll_offset_; |
376 | 376 |
377 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; | 377 base::WeakPtrFactory<RenderWidgetHostViewAndroid> weak_ptr_factory_; |
378 | 378 |
379 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 379 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
380 }; | 380 }; |
381 | 381 |
382 } // namespace content | 382 } // namespace content |
383 | 383 |
384 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 384 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
OLD | NEW |