| 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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 657 #if defined(OS_MACOSX) | 657 #if defined(OS_MACOSX) |
| 658 void OnCompositorSurfaceBuffersSwapped( | 658 void OnCompositorSurfaceBuffersSwapped( |
| 659 const ViewHostMsg_CompositorSurfaceBuffersSwapped_Params& params); | 659 const ViewHostMsg_CompositorSurfaceBuffersSwapped_Params& params); |
| 660 #endif | 660 #endif |
| 661 bool OnSwapCompositorFrame(const IPC::Message& message); | 661 bool OnSwapCompositorFrame(const IPC::Message& message); |
| 662 void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, | 662 void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, |
| 663 gfx::Vector2dF current_fling_velocity); | 663 gfx::Vector2dF current_fling_velocity); |
| 664 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); | 664 void OnUpdateRect(const ViewHostMsg_UpdateRect_Params& params); |
| 665 void OnUpdateIsDelayed(); | 665 void OnUpdateIsDelayed(); |
| 666 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); | 666 void OnQueueSyntheticGesture(const SyntheticGesturePacket& gesture_packet); |
| 667 void OnDidFinishTopControlsGesture(); |
| 667 virtual void OnFocus(); | 668 virtual void OnFocus(); |
| 668 virtual void OnBlur(); | 669 virtual void OnBlur(); |
| 669 void OnSetCursor(const WebCursor& cursor); | 670 void OnSetCursor(const WebCursor& cursor); |
| 670 void OnTextInputTypeChanged(ui::TextInputType type, | 671 void OnTextInputTypeChanged(ui::TextInputType type, |
| 671 ui::TextInputMode input_mode, | 672 ui::TextInputMode input_mode, |
| 672 bool can_compose_inline); | 673 bool can_compose_inline); |
| 673 #if defined(OS_MACOSX) || defined(OS_WIN) || defined(USE_AURA) | 674 #if defined(OS_MACOSX) || defined(OS_WIN) || defined(USE_AURA) |
| 674 void OnImeCompositionRangeChanged( | 675 void OnImeCompositionRangeChanged( |
| 675 const gfx::Range& range, | 676 const gfx::Range& range, |
| 676 const std::vector<gfx::Rect>& character_bounds); | 677 const std::vector<gfx::Rect>& character_bounds); |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 int64 last_input_number_; | 923 int64 last_input_number_; |
| 923 | 924 |
| 924 BrowserRenderingStats rendering_stats_; | 925 BrowserRenderingStats rendering_stats_; |
| 925 | 926 |
| 926 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 927 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
| 927 }; | 928 }; |
| 928 | 929 |
| 929 } // namespace content | 930 } // namespace content |
| 930 | 931 |
| 931 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 932 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
| OLD | NEW |