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_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 const ui::LatencyInfo& latency) override; | 197 const ui::LatencyInfo& latency) override; |
198 void ProcessGestureEvent(const blink::WebGestureEvent& event, | 198 void ProcessGestureEvent(const blink::WebGestureEvent& event, |
199 const ui::LatencyInfo& latency) override; | 199 const ui::LatencyInfo& latency) override; |
200 gfx::Point TransformPointToLocalCoordSpace( | 200 gfx::Point TransformPointToLocalCoordSpace( |
201 const gfx::Point& point, | 201 const gfx::Point& point, |
202 const cc::SurfaceId& original_surface) override; | 202 const cc::SurfaceId& original_surface) override; |
203 gfx::Point TransformPointToCoordSpaceForView( | 203 gfx::Point TransformPointToCoordSpaceForView( |
204 const gfx::Point& point, | 204 const gfx::Point& point, |
205 RenderWidgetHostViewBase* target_view) override; | 205 RenderWidgetHostViewBase* target_view) override; |
206 | 206 |
207 void FocusedNodeChanged(bool is_editable_node) override; | 207 void FocusedNodeChanged(bool is_editable_node, |
| 208 const gfx::Rect& node_bounds_in_screen) override; |
208 | 209 |
209 // Overridden from ui::TextInputClient: | 210 // Overridden from ui::TextInputClient: |
210 void SetCompositionText(const ui::CompositionText& composition) override; | 211 void SetCompositionText(const ui::CompositionText& composition) override; |
211 void ConfirmCompositionText() override; | 212 void ConfirmCompositionText() override; |
212 void ClearCompositionText() override; | 213 void ClearCompositionText() override; |
213 void InsertText(const base::string16& text) override; | 214 void InsertText(const base::string16& text) override; |
214 void InsertChar(const ui::KeyEvent& event) override; | 215 void InsertChar(const ui::KeyEvent& event) override; |
215 ui::TextInputType GetTextInputType() const override; | 216 ui::TextInputType GetTextInputType() const override; |
216 ui::TextInputMode GetTextInputMode() const override; | 217 ui::TextInputMode GetTextInputMode() const override; |
217 base::i18n::TextDirection GetTextDirection() const override; | 218 base::i18n::TextDirection GetTextDirection() const override; |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 int32_t last_active_widget_routing_id_; | 687 int32_t last_active_widget_routing_id_; |
687 | 688 |
688 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 689 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
689 | 690 |
690 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 691 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
691 }; | 692 }; |
692 | 693 |
693 } // namespace content | 694 } // namespace content |
694 | 695 |
695 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 696 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |