| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ | 5 #ifndef CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ |
| 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ | 6 #define CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ |
| 7 | 7 |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 void GestureTap(gin::Arguments* args); | 145 void GestureTap(gin::Arguments* args); |
| 146 void GestureTapDown(gin::Arguments* args); | 146 void GestureTapDown(gin::Arguments* args); |
| 147 void GestureShowPress(gin::Arguments* args); | 147 void GestureShowPress(gin::Arguments* args); |
| 148 void GestureTapCancel(gin::Arguments* args); | 148 void GestureTapCancel(gin::Arguments* args); |
| 149 void GestureLongPress(gin::Arguments* args); | 149 void GestureLongPress(gin::Arguments* args); |
| 150 void GestureLongTap(gin::Arguments* args); | 150 void GestureLongTap(gin::Arguments* args); |
| 151 void GestureTwoFingerTap(gin::Arguments* args); | 151 void GestureTwoFingerTap(gin::Arguments* args); |
| 152 | 152 |
| 153 void ContinuousMouseScrollBy(gin::Arguments* args); | 153 void ContinuousMouseScrollBy(gin::Arguments* args); |
| 154 void MouseMoveTo(gin::Arguments* args); | 154 void MouseMoveTo(gin::Arguments* args); |
| 155 void MouseLeave(); |
| 155 void TrackpadScrollBegin(); | 156 void TrackpadScrollBegin(); |
| 156 void TrackpadScroll(gin::Arguments* args); | 157 void TrackpadScroll(gin::Arguments* args); |
| 157 void TrackpadScrollEnd(); | 158 void TrackpadScrollEnd(); |
| 158 void MouseScrollBy(gin::Arguments* args); | 159 void MouseScrollBy(gin::Arguments* args); |
| 159 void MouseMomentumBegin(); | 160 void MouseMomentumBegin(); |
| 160 void MouseMomentumBegin2(gin::Arguments* args); | 161 void MouseMomentumBegin2(gin::Arguments* args); |
| 161 void MouseMomentumScrollBy(gin::Arguments* args); | 162 void MouseMomentumScrollBy(gin::Arguments* args); |
| 162 void MouseMomentumEnd(); | 163 void MouseMomentumEnd(); |
| 163 void ScheduleAsynchronousClick(int button_number, int modifiers); | 164 void ScheduleAsynchronousClick(int button_number, int modifiers); |
| 164 void ScheduleAsynchronousKeyDown(const std::string& code_str, | 165 void ScheduleAsynchronousKeyDown(const std::string& code_str, |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 int click_count_; | 284 int click_count_; |
| 284 | 285 |
| 285 base::WeakPtrFactory<EventSender> weak_factory_; | 286 base::WeakPtrFactory<EventSender> weak_factory_; |
| 286 | 287 |
| 287 DISALLOW_COPY_AND_ASSIGN(EventSender); | 288 DISALLOW_COPY_AND_ASSIGN(EventSender); |
| 288 }; | 289 }; |
| 289 | 290 |
| 290 } // namespace content | 291 } // namespace content |
| 291 | 292 |
| 292 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ | 293 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ |
| OLD | NEW |