| 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 <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 void OnSetTouchEventEmulationEnabled(bool enabled, bool allow_pinch); | 644 void OnSetTouchEventEmulationEnabled(bool enabled, bool allow_pinch); |
| 645 void OnTextInputTypeChanged(ui::TextInputType type, | 645 void OnTextInputTypeChanged(ui::TextInputType type, |
| 646 ui::TextInputMode input_mode, | 646 ui::TextInputMode input_mode, |
| 647 bool can_compose_inline); | 647 bool can_compose_inline); |
| 648 #if defined(OS_MACOSX) || defined(USE_AURA) | 648 #if defined(OS_MACOSX) || defined(USE_AURA) |
| 649 void OnImeCompositionRangeChanged( | 649 void OnImeCompositionRangeChanged( |
| 650 const gfx::Range& range, | 650 const gfx::Range& range, |
| 651 const std::vector<gfx::Rect>& character_bounds); | 651 const std::vector<gfx::Rect>& character_bounds); |
| 652 #endif | 652 #endif |
| 653 void OnImeCancelComposition(); | 653 void OnImeCancelComposition(); |
| 654 void OnDidActivateAcceleratedCompositing(bool activated); | |
| 655 void OnLockMouse(bool user_gesture, | 654 void OnLockMouse(bool user_gesture, |
| 656 bool last_unlocked_by_target, | 655 bool last_unlocked_by_target, |
| 657 bool privileged); | 656 bool privileged); |
| 658 void OnUnlockMouse(); | 657 void OnUnlockMouse(); |
| 659 void OnShowDisambiguationPopup(const gfx::Rect& rect, | 658 void OnShowDisambiguationPopup(const gfx::Rect& rect, |
| 660 const gfx::Size& size, | 659 const gfx::Size& size, |
| 661 const cc::SharedBitmapId& id); | 660 const cc::SharedBitmapId& id); |
| 662 #if defined(OS_WIN) | 661 #if defined(OS_WIN) |
| 663 void OnWindowlessPluginDummyWindowCreated( | 662 void OnWindowlessPluginDummyWindowCreated( |
| 664 gfx::NativeViewId dummy_activation_window); | 663 gfx::NativeViewId dummy_activation_window); |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 #endif | 884 #endif |
| 886 | 885 |
| 887 int64 last_input_number_; | 886 int64 last_input_number_; |
| 888 | 887 |
| 889 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 888 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 890 }; | 889 }; |
| 891 | 890 |
| 892 } // namespace content | 891 } // namespace content |
| 893 | 892 |
| 894 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 893 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |