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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 void OnClose(); | 628 void OnClose(); |
629 void OnUpdateScreenRectsAck(); | 629 void OnUpdateScreenRectsAck(); |
630 void OnRequestMove(const gfx::Rect& pos); | 630 void OnRequestMove(const gfx::Rect& pos); |
631 void OnSetTooltipText(const base::string16& tooltip_text, | 631 void OnSetTooltipText(const base::string16& tooltip_text, |
632 blink::WebTextDirection text_direction_hint); | 632 blink::WebTextDirection text_direction_hint); |
633 #if defined(OS_MACOSX) | 633 #if defined(OS_MACOSX) |
634 void OnCompositorSurfaceBuffersSwapped( | 634 void OnCompositorSurfaceBuffersSwapped( |
635 const ViewHostMsg_CompositorSurfaceBuffersSwapped_Params& params); | 635 const ViewHostMsg_CompositorSurfaceBuffersSwapped_Params& params); |
636 #endif | 636 #endif |
637 bool OnSwapCompositorFrame(const IPC::Message& message); | 637 bool OnSwapCompositorFrame(const IPC::Message& message); |
| 638 void OnDeliverPayload(const IPC::Message& payload); |
638 void OnFlingingStopped(); | 639 void OnFlingingStopped(); |
639 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); | 640 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); |
640 void OnUpdateIsDelayed(); | 641 void OnUpdateIsDelayed(); |
641 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); | 642 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); |
642 virtual void OnFocus(); | 643 virtual void OnFocus(); |
643 virtual void OnBlur(); | 644 virtual void OnBlur(); |
644 void OnSetCursor(const WebCursor& cursor); | 645 void OnSetCursor(const WebCursor& cursor); |
645 void OnSetTouchEventEmulationEnabled(bool enabled, bool allow_pinch); | 646 void OnSetTouchEventEmulationEnabled(bool enabled, bool allow_pinch); |
646 void OnTextInputTypeChanged(ui::TextInputType type, | 647 void OnTextInputTypeChanged(ui::TextInputType type, |
647 ui::TextInputMode input_mode, | 648 ui::TextInputMode input_mode, |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 #endif | 890 #endif |
890 | 891 |
891 int64 last_input_number_; | 892 int64 last_input_number_; |
892 | 893 |
893 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 894 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
894 }; | 895 }; |
895 | 896 |
896 } // namespace content | 897 } // namespace content |
897 | 898 |
898 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 899 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |