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

Side by Side Diff: content/shell/renderer/test_runner/event_sender.h

Issue 928973002: Add mouseLeave API in eventSender. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « no previous file | content/shell/renderer/test_runner/event_sender.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 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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/shell/renderer/test_runner/event_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698