| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 SetTouchPointTilt(unsigned index, |
| 112 float tilt, |
| 113 float tiltDirection, |
| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 int click_count_; | 289 int click_count_; |
| 286 | 290 |
| 287 base::WeakPtrFactory<EventSender> weak_factory_; | 291 base::WeakPtrFactory<EventSender> weak_factory_; |
| 288 | 292 |
| 289 DISALLOW_COPY_AND_ASSIGN(EventSender); | 293 DISALLOW_COPY_AND_ASSIGN(EventSender); |
| 290 }; | 294 }; |
| 291 | 295 |
| 292 } // namespace content | 296 } // namespace content |
| 293 | 297 |
| 294 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ | 298 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ |
| OLD | NEW |