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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 gfx::Point* transformed_point) override; | 195 gfx::Point* transformed_point) override; |
196 void ProcessMouseEvent(const blink::WebMouseEvent& event, | 196 void ProcessMouseEvent(const blink::WebMouseEvent& event, |
197 const ui::LatencyInfo& latency) override; | 197 const ui::LatencyInfo& latency) override; |
198 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, | 198 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, |
199 const ui::LatencyInfo& latency) override; | 199 const ui::LatencyInfo& latency) override; |
200 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 200 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
201 const ui::LatencyInfo& latency) override; | 201 const ui::LatencyInfo& latency) override; |
202 void ProcessGestureEvent(const blink::WebGestureEvent& event, | 202 void ProcessGestureEvent(const blink::WebGestureEvent& event, |
203 const ui::LatencyInfo& latency) override; | 203 const ui::LatencyInfo& latency) override; |
204 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 204 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
205 cc::SurfaceId original_surface, | 205 const cc::SurfaceId& original_surface, |
206 gfx::Point* transformed_point) override; | 206 gfx::Point* transformed_point) override; |
207 void FocusedNodeChanged(bool is_editable_node) override; | 207 void FocusedNodeChanged(bool is_editable_node) override; |
208 | 208 |
209 // Overridden from ui::TextInputClient: | 209 // Overridden from ui::TextInputClient: |
210 void SetCompositionText(const ui::CompositionText& composition) override; | 210 void SetCompositionText(const ui::CompositionText& composition) override; |
211 void ConfirmCompositionText() override; | 211 void ConfirmCompositionText() override; |
212 void ClearCompositionText() override; | 212 void ClearCompositionText() override; |
213 void InsertText(const base::string16& text) override; | 213 void InsertText(const base::string16& text) override; |
214 void InsertChar(const ui::KeyEvent& event) override; | 214 void InsertChar(const ui::KeyEvent& event) override; |
215 ui::TextInputType GetTextInputType() const override; | 215 ui::TextInputType GetTextInputType() const override; |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 bool disable_input_event_router_for_testing_; | 687 bool disable_input_event_router_for_testing_; |
688 | 688 |
689 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 689 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
690 | 690 |
691 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 691 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
692 }; | 692 }; |
693 | 693 |
694 } // namespace content | 694 } // namespace content |
695 | 695 |
696 #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 |