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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 const std::vector<gfx::Rect>& character_bounds); | 526 const std::vector<gfx::Rect>& character_bounds); |
527 void OnMsgImeCancelComposition(); | 527 void OnMsgImeCancelComposition(); |
528 | 528 |
529 void OnMsgDidActivateAcceleratedCompositing(bool activated); | 529 void OnMsgDidActivateAcceleratedCompositing(bool activated); |
530 | 530 |
531 void OnMsgLockMouse(bool user_gesture, | 531 void OnMsgLockMouse(bool user_gesture, |
532 bool last_unlocked_by_target, | 532 bool last_unlocked_by_target, |
533 bool privileged); | 533 bool privileged); |
534 void OnMsgUnlockMouse(); | 534 void OnMsgUnlockMouse(); |
535 | 535 |
| 536 void OnMsgMultipleTargetsTouched(const gfx::Rect& rect, |
| 537 const gfx::Size& size, |
| 538 const TransportDIB::Id& id); |
| 539 |
536 #if defined(OS_POSIX) || defined(USE_AURA) | 540 #if defined(OS_POSIX) || defined(USE_AURA) |
537 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 541 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
538 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 542 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
539 #endif | 543 #endif |
540 #if defined(OS_MACOSX) | 544 #if defined(OS_MACOSX) |
541 void OnMsgPluginFocusChanged(bool focused, int plugin_id); | 545 void OnMsgPluginFocusChanged(bool focused, int plugin_id); |
542 void OnMsgStartPluginIme(); | 546 void OnMsgStartPluginIme(); |
543 void OnAllocateFakePluginWindowHandle(bool opaque, | 547 void OnAllocateFakePluginWindowHandle(bool opaque, |
544 bool root, | 548 bool root, |
545 gfx::PluginWindowHandle* id); | 549 gfx::PluginWindowHandle* id); |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 SmoothScrollGestureMap active_smooth_scroll_gestures_; | 794 SmoothScrollGestureMap active_smooth_scroll_gestures_; |
791 | 795 |
792 scoped_ptr<GestureEventFilter> gesture_event_filter_; | 796 scoped_ptr<GestureEventFilter> gesture_event_filter_; |
793 | 797 |
794 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 798 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
795 }; | 799 }; |
796 | 800 |
797 } // namespace content | 801 } // namespace content |
798 | 802 |
799 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 803 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |