OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_BASE_H_ | |
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_BASE_H_ | |
7 | |
8 #include "base/time/time.h" | |
9 #include "content/browser/renderer_host/input/synthetic_gesture_target.h" | |
10 | |
11 namespace ui { | |
12 struct LatencyInfo; | |
13 } | |
14 | |
15 namespace WebKit { | |
16 class WebTouchEvent; | |
17 class WebMouseEvent; | |
18 class WebMouseWheelEvent; | |
19 } | |
20 | |
21 namespace content { | |
22 | |
23 class RenderWidgetHostView; | |
24 | |
25 class SyntheticGestureTargetBase : public SyntheticGestureTarget { | |
26 public: | |
27 explicit SyntheticGestureTargetBase(RenderWidgetHostView* render_view); | |
jdduke (slow)
2013/10/30 19:02:43
Are there issues with holding a host view referenc
Dominik Grewe
2013/10/30 19:11:59
The controller (currently) lives in RWHI so is ind
jdduke (slow)
2013/10/31 00:52:51
Either will probably be fine, though I'm not reall
aelias_OOO_until_Jul13
2013/10/31 01:47:48
Based on the comment in render_widget_host_impl.h
kouhei (in TOK)
2013/10/31 04:26:36
Done.
| |
28 ~SyntheticGestureTargetBase(); | |
29 | |
30 virtual void QueueWebTouchEventToPlatform( | |
31 const WebKit::WebTouchEvent& web_touch, | |
32 const ui::LatencyInfo& latency_info); | |
33 | |
34 virtual void QueueWebMouseWheelEventToPlatform( | |
35 const WebKit::WebMouseWheelEvent& web_wheel, | |
36 const ui::LatencyInfo& latency_info); | |
37 | |
38 virtual void QueueWebMouseEventToPlatform( | |
39 const WebKit::WebMouseEvent& web_mouse, | |
40 const ui::LatencyInfo& latency_info); | |
41 | |
42 // SyntheticGestureTarget: | |
43 virtual void QueueInputEventToPlatform(const InputEvent& event) OVERRIDE; | |
44 | |
45 virtual void OnSyntheticGestureCompleted( | |
46 SyntheticGestureNew::Result result) OVERRIDE; | |
47 | |
48 virtual base::TimeDelta GetSyntheticGestureUpdateRate() const OVERRIDE; | |
aelias_OOO_until_Jul13
2013/10/31 01:47:48
Why should the target decide this rate? Can we ma
| |
49 | |
50 virtual SyntheticGestureParams::GestureSourceType | |
51 GetDefaultSyntheticGestureSourceType() const OVERRIDE; | |
aelias_OOO_until_Jul13
2013/10/31 01:47:48
Likewise, can telemetry decide this without asking
| |
52 virtual bool SupportsSyntheticGestureSourceType( | |
aelias_OOO_until_Jul13
2013/10/31 01:47:48
Can we also remove this and just mandate that all
aelias_OOO_until_Jul13
2013/10/31 01:51:41
Sorry, leftover comment before I noticed the Andro
| |
53 SyntheticGestureParams::GestureSourceType gesture_source_type) const | |
54 OVERRIDE; | |
55 | |
56 protected: | |
57 RenderWidgetHostView* render_view() { return render_view_; } | |
58 | |
59 private: | |
60 RenderWidgetHostView* render_view_; | |
61 | |
62 DISALLOW_COPY_AND_ASSIGN(SyntheticGestureTargetBase); | |
63 }; | |
64 | |
65 } // namespace content | |
66 | |
67 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_BASE_H_ | |
OLD | NEW |