Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: content/renderer/render_widget.h

Issue 2662173005: Revert of scheduler: Detect single event gestures correctly (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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,
265 InputEventAckState ack_result) override; 264 InputEventAckState ack_result) override;
266 void SetInputHandler(RenderWidgetInputHandler* input_handler) override; 265 void SetInputHandler(RenderWidgetInputHandler* input_handler) override;
267 void ShowVirtualKeyboard() override; 266 void ShowVirtualKeyboard() override;
268 void UpdateTextInputState() override; 267 void UpdateTextInputState() override;
269 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; 268 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override;
270 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; 269 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override;
271 270
272 // RenderWidgetScreenMetricsDelegate 271 // RenderWidgetScreenMetricsDelegate
273 void Redraw() override; 272 void Redraw() override;
274 void Resize(const ResizeParams& resize_params) override; 273 void Resize(const ResizeParams& resize_params) override;
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 // being handled. If the current event results in starting a drag/drop 835 // being handled. If the current event results in starting a drag/drop
837 // session, this info is sent to the browser along with other drag/drop info. 836 // session, this info is sent to the browser along with other drag/drop info.
838 DragEventSourceInfo possible_drag_event_info_; 837 DragEventSourceInfo possible_drag_event_info_;
839 838
840 DISALLOW_COPY_AND_ASSIGN(RenderWidget); 839 DISALLOW_COPY_AND_ASSIGN(RenderWidget);
841 }; 840 };
842 841
843 } // namespace content 842 } // namespace content
844 843
845 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ 844 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698