| 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 bool IsShowing() OVERRIDE; | 98 virtual bool IsShowing() OVERRIDE; |
| 99 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 99 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
| 100 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; | 100 virtual gfx::Size GetPhysicalBackingSize() const OVERRIDE; |
| 101 virtual float GetOverdrawBottomHeight() const OVERRIDE; | 101 virtual float GetOverdrawBottomHeight() const OVERRIDE; |
| 102 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 102 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
| 103 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 103 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
| 104 virtual void TextInputTypeChanged(ui::TextInputType type, | 104 virtual void TextInputTypeChanged(ui::TextInputType type, |
| 105 ui::TextInputMode input_mode, | 105 ui::TextInputMode input_mode, |
| 106 bool can_compose_inline) OVERRIDE; | 106 bool can_compose_inline) OVERRIDE; |
| 107 virtual void ImeCancelComposition() OVERRIDE; | 107 virtual void ImeCancelComposition() OVERRIDE; |
| 108 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; |
| 108 virtual void DidUpdateBackingStore( | 109 virtual void DidUpdateBackingStore( |
| 109 const gfx::Rect& scroll_rect, | 110 const gfx::Rect& scroll_rect, |
| 110 const gfx::Vector2d& scroll_delta, | 111 const gfx::Vector2d& scroll_delta, |
| 111 const std::vector<gfx::Rect>& copy_rects, | 112 const std::vector<gfx::Rect>& copy_rects, |
| 112 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE; | 113 const std::vector<ui::LatencyInfo>& latency_info) OVERRIDE; |
| 113 virtual void RenderProcessGone(base::TerminationStatus status, | 114 virtual void RenderProcessGone(base::TerminationStatus status, |
| 114 int error_code) OVERRIDE; | 115 int error_code) OVERRIDE; |
| 115 virtual void Destroy() OVERRIDE; | 116 virtual void Destroy() OVERRIDE; |
| 116 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; | 117 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; |
| 117 virtual void SelectionChanged(const base::string16& text, | 118 virtual void SelectionChanged(const base::string16& text, |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 const bool using_synchronous_compositor_; | 351 const bool using_synchronous_compositor_; |
| 351 | 352 |
| 352 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; | 353 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; |
| 353 | 354 |
| 354 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 355 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 355 }; | 356 }; |
| 356 | 357 |
| 357 } // namespace content | 358 } // namespace content |
| 358 | 359 |
| 359 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 360 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |