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

Unified Diff: content/browser/renderer_host/input/synthetic_pointer_driver.h

Issue 2478423002: Rename SyntheticPointer to SyntheticPointerDriver (Closed)
Patch Set: rename Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/input/synthetic_pointer_driver.h
diff --git a/content/browser/renderer_host/input/synthetic_pointer_driver.h b/content/browser/renderer_host/input/synthetic_pointer_driver.h
new file mode 100644
index 0000000000000000000000000000000000000000..b060b65e8b75c9c383c5480b0baa385e2ee22039
--- /dev/null
+++ b/content/browser/renderer_host/input/synthetic_pointer_driver.h
@@ -0,0 +1,49 @@
+// 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_POINTER_DRIVER_H_
+#define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_DRIVER_H_
+
+#include <memory>
+
+#include "base/macros.h"
+#include "content/common/content_export.h"
+#include "content/common/input/synthetic_gesture_params.h"
+#include "content/common/input/synthetic_pointer_action_params.h"
+#include "content/common/input/synthetic_web_input_event_builders.h"
+
+namespace content {
+
+class SyntheticGestureTarget;
+
+class CONTENT_EXPORT SyntheticPointerDriver {
+ public:
+ SyntheticPointerDriver();
+ virtual ~SyntheticPointerDriver();
+
+ static std::unique_ptr<SyntheticPointerDriver> Create(
+ SyntheticGestureParams::GestureSourceType gesture_source_type);
+
+ virtual void DispatchEvent(SyntheticGestureTarget* target,
+ const base::TimeTicks& timestamp) = 0;
+
+ virtual int Press(float x, float y) = 0;
+ virtual void Move(float x, float y, int index = 0) = 0;
+ virtual void Release(int index = 0) = 0;
+
+ // Check if the user inputs in the SyntheticPointerActionParams can generate
+ // a valid sequence of pointer actions.
+ virtual bool UserInputCheck(
+ const SyntheticPointerActionParams& params) const = 0;
+
+ protected:
+ static double ConvertTimestampToSeconds(const base::TimeTicks& timestamp);
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(SyntheticPointerDriver);
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_DRIVER_H_

Powered by Google App Engine
This is Rietveld 408576698