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 <queue> | 10 #include <queue> |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
552 const std::vector<gfx::Rect>& character_bounds); | 552 const std::vector<gfx::Rect>& character_bounds); |
553 void OnMsgImeCancelComposition(); | 553 void OnMsgImeCancelComposition(); |
554 | 554 |
555 void OnMsgDidActivateAcceleratedCompositing(bool activated); | 555 void OnMsgDidActivateAcceleratedCompositing(bool activated); |
556 | 556 |
557 void OnMsgLockMouse(bool user_gesture, | 557 void OnMsgLockMouse(bool user_gesture, |
558 bool last_unlocked_by_target, | 558 bool last_unlocked_by_target, |
559 bool privileged); | 559 bool privileged); |
560 void OnMsgUnlockMouse(); | 560 void OnMsgUnlockMouse(); |
561 | 561 |
| 562 void OnMsgShowDisambiguationPopup(const gfx::Rect& rect, |
| 563 const gfx::Size& size, |
| 564 const TransportDIB::Id& id); |
| 565 |
562 #if defined(OS_POSIX) || defined(USE_AURA) | 566 #if defined(OS_POSIX) || defined(USE_AURA) |
563 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 567 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
564 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 568 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
565 #endif | 569 #endif |
566 #if defined(OS_MACOSX) | 570 #if defined(OS_MACOSX) |
567 void OnMsgPluginFocusChanged(bool focused, int plugin_id); | 571 void OnMsgPluginFocusChanged(bool focused, int plugin_id); |
568 void OnMsgStartPluginIme(); | 572 void OnMsgStartPluginIme(); |
569 void OnAllocateFakePluginWindowHandle(bool opaque, | 573 void OnAllocateFakePluginWindowHandle(bool opaque, |
570 bool root, | 574 bool root, |
571 gfx::PluginWindowHandle* id); | 575 gfx::PluginWindowHandle* id); |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 SmoothScrollGestureMap active_smooth_scroll_gestures_; | 820 SmoothScrollGestureMap active_smooth_scroll_gestures_; |
817 | 821 |
818 scoped_ptr<GestureEventFilter> gesture_event_filter_; | 822 scoped_ptr<GestureEventFilter> gesture_event_filter_; |
819 | 823 |
820 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 824 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
821 }; | 825 }; |
822 | 826 |
823 } // namespace content | 827 } // namespace content |
824 | 828 |
825 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 829 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |