| 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 SetTouchPointRadius(unsigned index, | |
| 112 float rx, | |
| 113 float ry, | |
| 114 bool set_state_moved); | |
| 115 void SetTouchModifier(const std::string& key_name, bool set_mask); | 111 void SetTouchModifier(const std::string& key_name, bool set_mask); |
| 116 void SetTouchCancelable(bool cancelable); | 112 void SetTouchCancelable(bool cancelable); |
| 117 void ThrowTouchPointError(); | 113 void ThrowTouchPointError(); |
| 118 | 114 |
| 119 void DumpFilenameBeingDragged(); | 115 void DumpFilenameBeingDragged(); |
| 120 | 116 |
| 121 void GestureFlingCancel(); | 117 void GestureFlingCancel(); |
| 122 void GestureFlingStart(float x, | 118 void GestureFlingStart(float x, |
| 123 float y, | 119 float y, |
| 124 float velocity_x, | 120 float velocity_x, |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 int click_count_; | 284 int click_count_; |
| 289 | 285 |
| 290 base::WeakPtrFactory<EventSender> weak_factory_; | 286 base::WeakPtrFactory<EventSender> weak_factory_; |
| 291 | 287 |
| 292 DISALLOW_COPY_AND_ASSIGN(EventSender); | 288 DISALLOW_COPY_AND_ASSIGN(EventSender); |
| 293 }; | 289 }; |
| 294 | 290 |
| 295 } // namespace content | 291 } // namespace content |
| 296 | 292 |
| 297 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ | 293 #endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_EVENT_SENDER_H_ |
| OLD | NEW |