| 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); |
| 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 Loading... |
| 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_ |
| OLD | NEW |