| 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_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 void ScheduleAnimation() override; | 198 void ScheduleAnimation() override; |
| 199 void UpdateVisualState() override; | 199 void UpdateVisualState() override; |
| 200 void WillBeginCompositorFrame() override; | 200 void WillBeginCompositorFrame() override; |
| 201 | 201 |
| 202 // RenderWidgetInputHandlerDelegate | 202 // RenderWidgetInputHandlerDelegate |
| 203 void FocusChangeComplete() override; | 203 void FocusChangeComplete() override; |
| 204 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; | 204 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; |
| 205 void ObserveWheelEventAndResult(const blink::WebMouseWheelEvent& wheel_event, | 205 void ObserveWheelEventAndResult(const blink::WebMouseWheelEvent& wheel_event, |
| 206 const gfx::Vector2dF& wheel_unused_delta, | 206 const gfx::Vector2dF& wheel_unused_delta, |
| 207 bool event_processed) override; | 207 bool event_processed) override; |
| 208 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event, |
| 209 const gfx::Vector2dF& unused_delta, |
| 210 bool event_processed) override; |
| 211 |
| 208 void OnDidHandleKeyEvent() override; | 212 void OnDidHandleKeyEvent() override; |
| 209 void OnDidOverscroll(const DidOverscrollParams& params) override; | 213 void OnDidOverscroll(const DidOverscrollParams& params) override; |
| 210 void OnInputEventAck(scoped_ptr<InputEventAck> input_event_ack) override; | 214 void OnInputEventAck(scoped_ptr<InputEventAck> input_event_ack) override; |
| 211 void NonBlockingInputEventHandled( | 215 void NonBlockingInputEventHandled( |
| 212 blink::WebInputEvent::Type handled_type) override; | 216 blink::WebInputEvent::Type handled_type) override; |
| 213 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; | 217 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; |
| 214 void UpdateTextInputState(ShowIme show_ime, | 218 void UpdateTextInputState(ShowIme show_ime, |
| 215 ChangeSource change_source) override; | 219 ChangeSource change_source) override; |
| 216 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; | 220 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 217 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; | 221 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 | 769 |
| 766 scoped_ptr<scheduler::RenderWidgetSchedulingState> | 770 scoped_ptr<scheduler::RenderWidgetSchedulingState> |
| 767 render_widget_scheduling_state_; | 771 render_widget_scheduling_state_; |
| 768 | 772 |
| 769 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 773 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 770 }; | 774 }; |
| 771 | 775 |
| 772 } // namespace content | 776 } // namespace content |
| 773 | 777 |
| 774 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 778 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |