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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; | 200 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; |
201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; | 201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; |
202 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 202 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
203 const ui::LatencyInfo& latency) override; | 203 const ui::LatencyInfo& latency) override; |
204 void ProcessGestureEvent(const blink::WebGestureEvent& event, | 204 void ProcessGestureEvent(const blink::WebGestureEvent& event, |
205 const ui::LatencyInfo& latency) override; | 205 const ui::LatencyInfo& latency) override; |
206 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 206 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
207 cc::SurfaceId original_surface, | 207 cc::SurfaceId original_surface, |
208 gfx::Point* transformed_point) override; | 208 gfx::Point* transformed_point) override; |
209 | 209 |
210 #if defined(OS_WIN) | |
211 void SetParentNativeViewAccessible( | |
212 gfx::NativeViewAccessible accessible_parent) override; | |
213 #endif | |
214 | |
215 // Overridden from ui::TextInputClient: | 210 // Overridden from ui::TextInputClient: |
216 void SetCompositionText(const ui::CompositionText& composition) override; | 211 void SetCompositionText(const ui::CompositionText& composition) override; |
217 void ConfirmCompositionText() override; | 212 void ConfirmCompositionText() override; |
218 void ClearCompositionText() override; | 213 void ClearCompositionText() override; |
219 void InsertText(const base::string16& text) override; | 214 void InsertText(const base::string16& text) override; |
220 void InsertChar(const ui::KeyEvent& event) override; | 215 void InsertChar(const ui::KeyEvent& event) override; |
221 ui::TextInputType GetTextInputType() const override; | 216 ui::TextInputType GetTextInputType() const override; |
222 ui::TextInputMode GetTextInputMode() const override; | 217 ui::TextInputMode GetTextInputMode() const override; |
223 int GetTextInputFlags() const override; | 218 int GetTextInputFlags() const override; |
224 bool CanComposeInline() const override; | 219 bool CanComposeInline() const override; |
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 bool disable_input_event_router_for_testing_; | 688 bool disable_input_event_router_for_testing_; |
694 | 689 |
695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 690 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
696 | 691 |
697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 692 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
698 }; | 693 }; |
699 | 694 |
700 } // namespace content | 695 } // namespace content |
701 | 696 |
702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 697 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |