| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_ANDROID_H_ |
| 7 |
| 8 #include "base/android/jni_android.h" |
| 9 #include "base/time/time.h" |
| 10 #include "content/browser/renderer_host/input/synthetic_gesture_target_base.h" |
| 11 |
| 12 namespace content { |
| 13 |
| 14 class ContentViewCoreImpl; |
| 15 class RenderWidgetHostViewAndroid; |
| 16 |
| 17 class SyntheticGestureTargetAndroid : public SyntheticGestureTargetBase { |
| 18 public: |
| 19 explicit SyntheticGestureTargetAndroid( |
| 20 RenderWidgetHostViewAndroid* render_view); |
| 21 ~SyntheticGestureTargetAndroid(); |
| 22 |
| 23 virtual void QueueWebTouchEventToPlatform( |
| 24 const WebKit::WebTouchEvent& web_touch, |
| 25 const ui::LatencyInfo& latency_info) OVERRIDE; |
| 26 |
| 27 // SyntheticGestureTarget: |
| 28 virtual SyntheticGestureParams::GestureSourceType |
| 29 GetDefaultSyntheticGestureSourceType() const OVERRIDE; |
| 30 virtual bool SupportsSyntheticGestureSourceType( |
| 31 SyntheticGestureParams::GestureSourceType gesture_source_type) const |
| 32 OVERRIDE; |
| 33 |
| 34 private: |
| 35 // Enum values below need to be kept in sync with SyntheticTouchEvent.java |
| 36 enum Action { |
| 37 ActionInvalid = -1, |
| 38 ActionStart = 0, |
| 39 ActionMove = 1, |
| 40 ActionCancel = 2, |
| 41 ActionEnd = 3 |
| 42 }; |
| 43 |
| 44 void TouchSetPointer(int index, int x, int y, int id); |
| 45 void TouchInject(Action action, int pointer_count); |
| 46 |
| 47 JNIEnv* env_; |
| 48 base::android::ScopedJavaGlobalRef<jobject> java_touch_event_; |
| 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(SyntheticGestureTargetAndroid); |
| 51 }; |
| 52 |
| 53 } // namespace content |
| 54 |
| 55 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_SYNTHETIC_GESTURE_TARGET_ANDROID_
H_ |
| OLD | NEW |