summaryrefslogtreecommitdiffstats
path: root/content/browser/renderer_host/input/synthetic_touch_pointer.h
blob: abd579e47d65611d9079317ecc43ce2ac43e79c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_TOUCH_POINTER_H_
#define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_TOUCH_POINTER_H_

#include "base/macros.h"
#include "content/browser/renderer_host/input/synthetic_pointer.h"
#include "content/common/content_export.h"
#include "content/common/input/synthetic_web_input_event_builders.h"

namespace content {

class CONTENT_EXPORT SyntheticTouchPointer : public SyntheticPointer {
 public:
  SyntheticTouchPointer();
  explicit SyntheticTouchPointer(SyntheticWebTouchEvent touch_event);
  ~SyntheticTouchPointer() override;

  void DispatchEvent(SyntheticGestureTarget* target,
                     const base::TimeTicks& timestamp) override;

  int Press(float x,
            float y,
            SyntheticGestureTarget* target,
            const base::TimeTicks& timestamp) override;
  void Move(int index,
            float x,
            float y,
            SyntheticGestureTarget* target,
            const base::TimeTicks& timestamp) override;
  void Release(int index,
               SyntheticGestureTarget* target,
               const base::TimeTicks& timestamp) override;

 private:
  SyntheticWebTouchEvent touch_event_;

  DISALLOW_COPY_AND_ASSIGN(SyntheticTouchPointer);
};

}  // namespace content

#endif  // CONTENT_COMMON_INPUT_SYNTHETIC_TOUCH_POINTER_H_