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_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; | 252 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; |
253 virtual void AccessibilityScrollToPoint( | 253 virtual void AccessibilityScrollToPoint( |
254 int acc_obj_id, gfx::Point point) OVERRIDE; | 254 int acc_obj_id, gfx::Point point) OVERRIDE; |
255 virtual void AccessibilitySetTextSelection( | 255 virtual void AccessibilitySetTextSelection( |
256 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 256 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
257 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; | 257 virtual gfx::Point GetLastTouchEventLocation() const OVERRIDE; |
258 virtual void FatalAccessibilityTreeError() OVERRIDE; | 258 virtual void FatalAccessibilityTreeError() OVERRIDE; |
259 | 259 |
260 // Overridden from ui::GestureEventHelper. | 260 // Overridden from ui::GestureEventHelper. |
261 virtual bool CanDispatchToConsumer(ui::GestureConsumer* consumer) OVERRIDE; | 261 virtual bool CanDispatchToConsumer(ui::GestureConsumer* consumer) OVERRIDE; |
262 virtual void DispatchPostponedGestureEvent(ui::GestureEvent* event) OVERRIDE; | |
263 virtual void DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE; | 262 virtual void DispatchCancelTouchEvent(ui::TouchEvent* event) OVERRIDE; |
264 | 263 |
265 // Overridden from ui::TextInputClient for Win8/metro TSF support. | 264 // Overridden from ui::TextInputClient for Win8/metro TSF support. |
266 // Following methods are not used in existing IMM32 related implementation. | 265 // Following methods are not used in existing IMM32 related implementation. |
267 virtual void SetCompositionText( | 266 virtual void SetCompositionText( |
268 const ui::CompositionText& composition) OVERRIDE; | 267 const ui::CompositionText& composition) OVERRIDE; |
269 virtual void ConfirmCompositionText() OVERRIDE; | 268 virtual void ConfirmCompositionText() OVERRIDE; |
270 virtual void ClearCompositionText() OVERRIDE; | 269 virtual void ClearCompositionText() OVERRIDE; |
271 virtual void InsertText(const base::string16& text) OVERRIDE; | 270 virtual void InsertText(const base::string16& text) OVERRIDE; |
272 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; | 271 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE; |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 base::win::ScopedComPtr<IAccessible> window_iaccessible_; | 600 base::win::ScopedComPtr<IAccessible> window_iaccessible_; |
602 | 601 |
603 std::vector<ui::LatencyInfo> software_latency_info_; | 602 std::vector<ui::LatencyInfo> software_latency_info_; |
604 | 603 |
605 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 604 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
606 }; | 605 }; |
607 | 606 |
608 } // namespace content | 607 } // namespace content |
609 | 608 |
610 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 609 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |