| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 void FocusChangeComplete() override; | 254 void FocusChangeComplete() override; |
| 255 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; | 255 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; |
| 256 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event, | 256 void ObserveGestureEventAndResult(const blink::WebGestureEvent& gesture_event, |
| 257 const gfx::Vector2dF& unused_delta, | 257 const gfx::Vector2dF& unused_delta, |
| 258 bool event_processed) override; | 258 bool event_processed) override; |
| 259 | 259 |
| 260 void OnDidHandleKeyEvent() override; | 260 void OnDidHandleKeyEvent() override; |
| 261 void OnDidOverscroll(const ui::DidOverscrollParams& params) override; | 261 void OnDidOverscroll(const ui::DidOverscrollParams& params) override; |
| 262 void OnInputEventAck(std::unique_ptr<InputEventAck> input_event_ack) override; | 262 void OnInputEventAck(std::unique_ptr<InputEventAck> input_event_ack) override; |
| 263 void NotifyInputEventHandled(blink::WebInputEvent::Type handled_type, | 263 void NotifyInputEventHandled(blink::WebInputEvent::Type handled_type, |
| 264 blink::WebInputEventResult result, |
| 264 InputEventAckState ack_result) override; | 265 InputEventAckState ack_result) override; |
| 265 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; | 266 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; |
| 266 void ShowVirtualKeyboard() override; | 267 void ShowVirtualKeyboard() override; |
| 267 void UpdateTextInputState() override; | 268 void UpdateTextInputState() override; |
| 268 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; | 269 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; |
| 269 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; | 270 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; |
| 270 | 271 |
| 271 // RenderWidgetScreenMetricsDelegate | 272 // RenderWidgetScreenMetricsDelegate |
| 272 void Redraw() override; | 273 void Redraw() override; |
| 273 void Resize(const ResizeParams& resize_params) override; | 274 void Resize(const ResizeParams& resize_params) override; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 // being handled. If the current event results in starting a drag/drop | 836 // being handled. If the current event results in starting a drag/drop |
| 836 // session, this info is sent to the browser along with other drag/drop info. | 837 // session, this info is sent to the browser along with other drag/drop info. |
| 837 DragEventSourceInfo possible_drag_event_info_; | 838 DragEventSourceInfo possible_drag_event_info_; |
| 838 | 839 |
| 839 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 840 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 840 }; | 841 }; |
| 841 | 842 |
| 842 } // namespace content | 843 } // namespace content |
| 843 | 844 |
| 844 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 845 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |