| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 const std::vector<gfx::Rect>& character_bounds); | 563 const std::vector<gfx::Rect>& character_bounds); |
| 564 void OnMsgImeCancelComposition(); | 564 void OnMsgImeCancelComposition(); |
| 565 | 565 |
| 566 void OnMsgDidActivateAcceleratedCompositing(bool activated); | 566 void OnMsgDidActivateAcceleratedCompositing(bool activated); |
| 567 | 567 |
| 568 void OnMsgLockMouse(bool user_gesture, | 568 void OnMsgLockMouse(bool user_gesture, |
| 569 bool last_unlocked_by_target, | 569 bool last_unlocked_by_target, |
| 570 bool privileged); | 570 bool privileged); |
| 571 void OnMsgUnlockMouse(); | 571 void OnMsgUnlockMouse(); |
| 572 | 572 |
| 573 void OnMsgShowDisambiguationPopup(const gfx::Rect& rect, |
| 574 const gfx::Size& size, |
| 575 const TransportDIB::Id& id); |
| 576 |
| 573 #if defined(OS_POSIX) || defined(USE_AURA) | 577 #if defined(OS_POSIX) || defined(USE_AURA) |
| 574 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 578 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
| 575 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 579 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
| 576 #endif | 580 #endif |
| 577 #if defined(OS_MACOSX) | 581 #if defined(OS_MACOSX) |
| 578 void OnMsgPluginFocusChanged(bool focused, int plugin_id); | 582 void OnMsgPluginFocusChanged(bool focused, int plugin_id); |
| 579 void OnMsgStartPluginIme(); | 583 void OnMsgStartPluginIme(); |
| 580 void OnAllocateFakePluginWindowHandle(bool opaque, | 584 void OnAllocateFakePluginWindowHandle(bool opaque, |
| 581 bool root, | 585 bool root, |
| 582 gfx::PluginWindowHandle* id); | 586 gfx::PluginWindowHandle* id); |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 bool tick_active_smooth_scroll_gestures_task_posted_; | 834 bool tick_active_smooth_scroll_gestures_task_posted_; |
| 831 | 835 |
| 832 scoped_ptr<GestureEventFilter> gesture_event_filter_; | 836 scoped_ptr<GestureEventFilter> gesture_event_filter_; |
| 833 | 837 |
| 834 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 838 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 835 }; | 839 }; |
| 836 | 840 |
| 837 } // namespace content | 841 } // namespace content |
| 838 | 842 |
| 839 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 843 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |