Index: content/browser/renderer_host/input/synthetic_pointer_action.h |
diff --git a/content/browser/renderer_host/input/synthetic_pointer_gesture.h b/content/browser/renderer_host/input/synthetic_pointer_action.h |
similarity index 78% |
rename from content/browser/renderer_host/input/synthetic_pointer_gesture.h |
rename to content/browser/renderer_host/input/synthetic_pointer_action.h |
index bbadc7dab786ffe4552a7ec33b030d403fa14058..d1907764c8a86f1b91600fd884b0f3adb4a45c9c 100644 |
--- a/content/browser/renderer_host/input/synthetic_pointer_gesture.h |
+++ b/content/browser/renderer_host/input/synthetic_pointer_action.h |
@@ -2,8 +2,8 @@ |
// 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_GESTURE_H_ |
-#define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_GESTURE_H_ |
+#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_ACTION_H_ |
+#define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_ACTION_H_ |
#include "base/macros.h" |
#include "content/browser/renderer_host/input/synthetic_gesture.h" |
@@ -13,15 +13,15 @@ |
namespace content { |
-class CONTENT_EXPORT SyntheticPointerGesture : public SyntheticGesture { |
+class CONTENT_EXPORT SyntheticPointerAction : public SyntheticGesture { |
public: |
- SyntheticPointerGesture( |
+ SyntheticPointerAction( |
SyntheticGestureParams::GestureSourceType gesture_source_type, |
PointerActionType pointer_action_type, |
SyntheticPointer* synthetic_pointer, |
gfx::PointF position, |
int index = 0); |
- ~SyntheticPointerGesture() override; |
+ ~SyntheticPointerAction() override; |
SyntheticGesture::Result ForwardInputEvents( |
const base::TimeTicks& timestamp, |
@@ -37,9 +37,9 @@ class CONTENT_EXPORT SyntheticPointerGesture : public SyntheticGesture { |
int index_; |
SyntheticPointer* synthetic_pointer_; |
- DISALLOW_COPY_AND_ASSIGN(SyntheticPointerGesture); |
+ DISALLOW_COPY_AND_ASSIGN(SyntheticPointerAction); |
}; |
} // namespace content |
-#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_GESTURE_H_ |
+#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_POINTER_ACTION_H_ |