| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 void OnClose(); | 587 void OnClose(); |
| 588 void OnUpdateScreenRectsAck(); | 588 void OnUpdateScreenRectsAck(); |
| 589 void OnRequestMove(const gfx::Rect& pos); | 589 void OnRequestMove(const gfx::Rect& pos); |
| 590 void OnSetTooltipText(const base::string16& tooltip_text, | 590 void OnSetTooltipText(const base::string16& tooltip_text, |
| 591 blink::WebTextDirection text_direction_hint); | 591 blink::WebTextDirection text_direction_hint); |
| 592 bool OnSwapCompositorFrame(const IPC::Message& message); | 592 bool OnSwapCompositorFrame(const IPC::Message& message); |
| 593 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); | 593 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); |
| 594 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); | 594 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); |
| 595 void OnSetCursor(const WebCursor& cursor); | 595 void OnSetCursor(const WebCursor& cursor); |
| 596 void OnTextInputStateChanged(const TextInputState& params); | 596 void OnTextInputStateChanged(const TextInputState& params); |
| 597 void OnTextInputInfoReply(int request_id, |
| 598 const std::string& text, |
| 599 const std::string& placeholder); |
| 597 | 600 |
| 598 void OnImeCompositionRangeChanged( | 601 void OnImeCompositionRangeChanged( |
| 599 const gfx::Range& range, | 602 const gfx::Range& range, |
| 600 const std::vector<gfx::Rect>& character_bounds); | 603 const std::vector<gfx::Rect>& character_bounds); |
| 601 void OnImeCancelComposition(); | 604 void OnImeCancelComposition(); |
| 602 void OnLockMouse(bool user_gesture, | 605 void OnLockMouse(bool user_gesture, |
| 603 bool last_unlocked_by_target, | 606 bool last_unlocked_by_target, |
| 604 bool privileged); | 607 bool privileged); |
| 605 void OnUnlockMouse(); | 608 void OnUnlockMouse(); |
| 606 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels, | 609 void OnShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 862 #endif | 865 #endif |
| 863 | 866 |
| 864 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; | 867 base::WeakPtrFactory<RenderWidgetHostImpl> weak_factory_; |
| 865 | 868 |
| 866 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 869 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 867 }; | 870 }; |
| 868 | 871 |
| 869 } // namespace content | 872 } // namespace content |
| 870 | 873 |
| 871 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 874 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |