Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: content/browser/renderer_host/input/synthetic_mouse_driver.h

Issue 2336803003: Make SyntheticPointerAction to flush the pointer action sequence (Closed)
Patch Set: controller Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "content/browser/renderer_host/input/synthetic_pointer_driver.h" 9 #include "content/browser/renderer_host/input/synthetic_pointer_driver.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/common/input/synthetic_web_input_event_builders.h" 11 #include "content/common/input/synthetic_web_input_event_builders.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 class CONTENT_EXPORT SyntheticMouseDriver : public SyntheticPointerDriver { 15 class CONTENT_EXPORT SyntheticMouseDriver : public SyntheticPointerDriver {
16 public: 16 public:
17 SyntheticMouseDriver(); 17 SyntheticMouseDriver();
18 ~SyntheticMouseDriver() override; 18 ~SyntheticMouseDriver() override;
19 19
20 void DispatchEvent(SyntheticGestureTarget* target, 20 void DispatchEvent(SyntheticGestureTarget* target,
21 const base::TimeTicks& timestamp) override; 21 const base::TimeTicks& timestamp) override;
22 22
23 int Press(float x, float y) override; 23 void Press(float x, float y, int index = 0) override;
24 void Move(float x, float y, int index = 0) override; 24 void Move(float x, float y, int index = 0) override;
25 void Release(int index = 0) override; 25 void Release(int index = 0) override;
26 26
27 bool UserInputCheck( 27 bool UserInputCheck(
28 const SyntheticPointerActionParams& params) const override; 28 const SyntheticPointerActionParams& params) const override;
29 29
30 private: 30 private:
31 blink::WebMouseEvent mouse_event_; 31 blink::WebMouseEvent mouse_event_;
32 DISALLOW_COPY_AND_ASSIGN(SyntheticMouseDriver); 32 DISALLOW_COPY_AND_ASSIGN(SyntheticMouseDriver);
33 }; 33 };
34 34
35 } // namespace content 35 } // namespace content
36 36
37 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_ 37 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_MOUSE_DRIVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698