| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_TOUCH_DRIVER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_TOUCH_DRIVER_H_ |
| 7 |
| 8 #include <array> |
| 9 #include "base/macros.h" |
| 10 #include "content/browser/renderer_host/input/synthetic_pointer_driver.h" |
| 11 #include "content/common/content_export.h" |
| 12 #include "content/common/input/synthetic_web_input_event_builders.h" |
| 13 |
| 14 namespace content { |
| 15 |
| 16 class CONTENT_EXPORT SyntheticTouchDriver : public SyntheticPointerDriver { |
| 17 public: |
| 18 using IndexMap = std::array<int, blink::WebTouchEvent::kTouchesLengthCap>; |
| 19 |
| 20 SyntheticTouchDriver(); |
| 21 explicit SyntheticTouchDriver(SyntheticWebTouchEvent touch_event); |
| 22 ~SyntheticTouchDriver() override; |
| 23 |
| 24 void DispatchEvent(SyntheticGestureTarget* target, |
| 25 const base::TimeTicks& timestamp) override; |
| 26 |
| 27 void Press(float x, float y, int index) override; |
| 28 void Move(float x, float y, int index) override; |
| 29 void Release(int index) override; |
| 30 |
| 31 bool UserInputCheck( |
| 32 const SyntheticPointerActionParams& params) const override; |
| 33 |
| 34 int GetPointIndex(int index) const override; |
| 35 |
| 36 private: |
| 37 SyntheticWebTouchEvent touch_event_; |
| 38 IndexMap index_map_; |
| 39 |
| 40 DISALLOW_COPY_AND_ASSIGN(SyntheticTouchDriver); |
| 41 }; |
| 42 |
| 43 } // namespace content |
| 44 |
| 45 #endif // CONTENT_COMMON_INPUT_SYNTHETIC_TOUCH_DRIVER_H_ |
| OLD | NEW |