| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 void OnMsgDidChangeNumTouchEvents(int count); | 476 void OnMsgDidChangeNumTouchEvents(int count); |
| 477 | 477 |
| 478 void OnMsgSetCursor(const WebCursor& cursor); | 478 void OnMsgSetCursor(const WebCursor& cursor); |
| 479 void OnMsgTextInputStateChanged(ui::TextInputType type, | 479 void OnMsgTextInputStateChanged(ui::TextInputType type, |
| 480 bool can_compose_inline); | 480 bool can_compose_inline); |
| 481 void OnMsgImeCompositionRangeChanged(const ui::Range& range); | 481 void OnMsgImeCompositionRangeChanged(const ui::Range& range); |
| 482 void OnMsgImeCancelComposition(); | 482 void OnMsgImeCancelComposition(); |
| 483 | 483 |
| 484 void OnMsgDidActivateAcceleratedCompositing(bool activated); | 484 void OnMsgDidActivateAcceleratedCompositing(bool activated); |
| 485 | 485 |
| 486 void OnMsgLockMouse(bool user_gesture); | 486 void OnMsgLockMouse(bool user_gesture, bool privileged); |
| 487 void OnMsgUnlockMouse(); | 487 void OnMsgUnlockMouse(); |
| 488 | 488 |
| 489 #if defined(OS_POSIX) || defined(USE_AURA) | 489 #if defined(OS_POSIX) || defined(USE_AURA) |
| 490 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 490 void OnMsgGetWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
| 491 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); | 491 void OnMsgGetRootWindowRect(gfx::NativeViewId window_id, gfx::Rect* results); |
| 492 #endif | 492 #endif |
| 493 #if defined(OS_MACOSX) | 493 #if defined(OS_MACOSX) |
| 494 void OnMsgPluginFocusChanged(bool focused, int plugin_id); | 494 void OnMsgPluginFocusChanged(bool focused, int plugin_id); |
| 495 void OnMsgStartPluginIme(); | 495 void OnMsgStartPluginIme(); |
| 496 void OnAllocateFakePluginWindowHandle(bool opaque, | 496 void OnAllocateFakePluginWindowHandle(bool opaque, |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 717 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 718 | 718 |
| 719 scoped_ptr<TapSuppressionController> tap_suppression_controller_; | 719 scoped_ptr<TapSuppressionController> tap_suppression_controller_; |
| 720 | 720 |
| 721 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 721 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 722 }; | 722 }; |
| 723 | 723 |
| 724 } // namespace content | 724 } // namespace content |
| 725 | 725 |
| 726 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 726 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |