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

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

Issue 990183003: Added EventSender.setTouchPointRadius() for layoutTests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added myself to AUTHORS. Impl. of AddTouchPoint temporary reverted Created 5 years, 9 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 | « AUTHORS ('k') | 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 101
102 // TODO: Move these into Internals once PageScaleConstraints are moved out of 102 // TODO: Move these into Internals once PageScaleConstraints are moved out of
103 // Source/web. crbug.com/434450. 103 // Source/web. crbug.com/434450.
104 void SetPageScaleFactor(float scale_factor, int x, int y); 104 void SetPageScaleFactor(float scale_factor, int x, int y);
105 void SetPageScaleFactorLimits(float min_scale, float max_scale); 105 void SetPageScaleFactorLimits(float min_scale, float max_scale);
106 106
107 void ClearTouchPoints(); 107 void ClearTouchPoints();
108 void ReleaseTouchPoint(unsigned index); 108 void ReleaseTouchPoint(unsigned index);
109 void UpdateTouchPoint(unsigned index, float x, float y); 109 void UpdateTouchPoint(unsigned index, float x, float y);
110 void CancelTouchPoint(unsigned index); 110 void CancelTouchPoint(unsigned index);
111 void SetTouchPointRadius(unsigned index,
112 float rx,
113 float ry,
114 bool set_state_moved);
111 void SetTouchModifier(const std::string& key_name, bool set_mask); 115 void SetTouchModifier(const std::string& key_name, bool set_mask);
112 void SetTouchCancelable(bool cancelable); 116 void SetTouchCancelable(bool cancelable);
113 void ThrowTouchPointError(); 117 void ThrowTouchPointError();
114 118
115 void DumpFilenameBeingDragged(); 119 void DumpFilenameBeingDragged();
116 120
117 void GestureFlingCancel(); 121 void GestureFlingCancel();
118 void GestureFlingStart(float x, 122 void GestureFlingStart(float x,
119 float y, 123 float y,
120 float velocity_x, 124 float velocity_x,
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 int click_count_; 288 int click_count_;
285 289
286 base::WeakPtrFactory<EventSender> weak_factory_; 290 base::WeakPtrFactory<EventSender> weak_factory_;
287 291
288 DISALLOW_COPY_AND_ASSIGN(EventSender); 292 DISALLOW_COPY_AND_ASSIGN(EventSender);
289 }; 293 };
290 294
291 } // namespace content 295 } // namespace content
292 296
293 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ 297 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_
OLDNEW
« no previous file with comments | « AUTHORS ('k') | content/shell/renderer/test_runner/event_sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698