summaryrefslogtreecommitdiffstats
path: root/chromium/content/browser/renderer_host/input/synthetic_gesture.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/renderer_host/input/synthetic_gesture.h')
-rw-r--r--chromium/content/browser/renderer_host/input/synthetic_gesture.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/content/browser/renderer_host/input/synthetic_gesture.h b/chromium/content/browser/renderer_host/input/synthetic_gesture.h
index c10c2fea214..1d605ff9383 100644
--- a/chromium/content/browser/renderer_host/input/synthetic_gesture.h
+++ b/chromium/content/browser/renderer_host/input/synthetic_gesture.h
@@ -9,7 +9,6 @@
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/common/input/synthetic_gesture_params.h"
-#include "third_party/WebKit/public/web/WebInputEvent.h"
namespace content {
@@ -38,17 +37,18 @@ class CONTENT_EXPORT SyntheticGesture {
GESTURE_RUNNING,
GESTURE_FINISHED,
GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED,
- GESTURE_SOURCE_TYPE_NOT_SUPPORTED_BY_PLATFORM,
- GESTURE_RESULT_MAX = GESTURE_SOURCE_TYPE_NOT_SUPPORTED_BY_PLATFORM
+ GESTURE_RESULT_MAX = GESTURE_SOURCE_TYPE_NOT_IMPLEMENTED
};
// Update the state of the gesture and forward the appropriate events to the
// platform. This function is called repeatedly by the synthetic gesture
// controller until it stops returning GESTURE_RUNNING.
virtual Result ForwardInputEvents(
- const base::TimeDelta& interval, SyntheticGestureTarget* target) = 0;
+ const base::TimeTicks& timestamp, SyntheticGestureTarget* target) = 0;
+
+ protected:
+ static double ConvertTimestampToSeconds(const base::TimeTicks& timestamp);
- private:
DISALLOW_COPY_AND_ASSIGN(SyntheticGesture);
};