Index: content/browser/renderer_host/input/synthetic_gesture_target_android.cc |
diff --git a/content/browser/renderer_host/input/synthetic_gesture_target_android.cc b/content/browser/renderer_host/input/synthetic_gesture_target_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d8d3836289e6a67a4d4c6535f04587c94852d2d2 |
--- /dev/null |
+++ b/content/browser/renderer_host/input/synthetic_gesture_target_android.cc |
@@ -0,0 +1,83 @@ |
+// Copyright 2013 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. |
+ |
+#include "content/browser/renderer_host/input/synthetic_gesture_target_android.h" |
+ |
+#include "content/browser/android/content_view_core_impl.h" |
+#include "jni/TouchEventSynthesizer_jni.h" |
+#include "third_party/WebKit/public/web/WebInputEvent.h" |
+ |
+using blink::WebTouchEvent; |
+ |
+namespace content { |
+ |
+SyntheticGestureTargetAndroid::SyntheticGestureTargetAndroid( |
+ RenderWidgetHostImpl* host, |
+ base::android::ScopedJavaLocalRef<jobject> touch_event_synthesizer) |
+ : SyntheticGestureTargetBase(host), |
+ touch_event_synthesizer_(touch_event_synthesizer) { |
+ DCHECK(!touch_event_synthesizer_.is_null()); |
+} |
+ |
+SyntheticGestureTargetAndroid::~SyntheticGestureTargetAndroid() { |
+} |
+ |
+bool SyntheticGestureTargetAndroid::RegisterTouchEventSynthesizer(JNIEnv* env) { |
+ return RegisterNativesImpl(env); |
+} |
+ |
+void SyntheticGestureTargetAndroid::TouchSetPointer( |
+ JNIEnv* env, int index, int x, int y, int id) { |
+ Java_TouchEventSynthesizer_setPointer(env, touch_event_synthesizer_.obj(), |
+ index, x, y, id); |
+} |
+ |
+void SyntheticGestureTargetAndroid::TouchInject( |
+ JNIEnv* env, Action action, int pointer_count) { |
+ Java_TouchEventSynthesizer_inject(env, touch_event_synthesizer_.obj(), |
+ static_cast<int>(action), pointer_count); |
+} |
+ |
+void SyntheticGestureTargetAndroid::QueueWebTouchEventToPlatform( |
+ const blink::WebTouchEvent& web_touch, const ui::LatencyInfo&) { |
+ JNIEnv* env = base::android::AttachCurrentThread(); |
+ |
+ SyntheticGestureTargetAndroid::Action action = |
+ SyntheticGestureTargetAndroid::ActionInvalid; |
+ switch (web_touch.type) { |
+ case blink::WebInputEvent::TouchStart: |
+ action = SyntheticGestureTargetAndroid::ActionStart; |
+ break; |
+ case blink::WebInputEvent::TouchMove: |
+ action = SyntheticGestureTargetAndroid::ActionMove; |
+ break; |
+ case blink::WebInputEvent::TouchCancel: |
+ action = SyntheticGestureTargetAndroid::ActionCancel; |
+ break; |
+ case blink::WebInputEvent::TouchEnd: |
+ action = SyntheticGestureTargetAndroid::ActionEnd; |
+ break; |
+ default: |
+ NOTREACHED(); |
+ } |
+ const unsigned num_touches = web_touch.touchesLength; |
+ for (unsigned i = 0; i < num_touches; ++i) { |
+ const blink::WebTouchPoint* point = &web_touch.touches[i]; |
+ TouchSetPointer(env, i, point->position.x, point->position.y, point->id); |
+ } |
+ |
+ TouchInject(env, action, num_touches); |
+} |
+ |
+SyntheticGestureParams::GestureSourceType |
+SyntheticGestureTargetAndroid::GetDefaultSyntheticGestureSourceType() const { |
+ return SyntheticGestureParams::TOUCH_INPUT; |
+} |
+ |
+bool SyntheticGestureTargetAndroid::SupportsSyntheticGestureSourceType( |
+ SyntheticGestureParams::GestureSourceType gesture_source_type) const { |
+ return gesture_source_type == SyntheticGestureParams::TOUCH_INPUT; |
+} |
+ |
+} // namespace content |