Index: content/browser/renderer_host/synthetic_touch_event_android.cc |
diff --git a/content/browser/renderer_host/synthetic_touch_event_android.cc b/content/browser/renderer_host/synthetic_touch_event_android.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5a5b17941548c18dd396e70e82a10f3c5f797b29 |
--- /dev/null |
+++ b/content/browser/renderer_host/synthetic_touch_event_android.cc |
@@ -0,0 +1,97 @@ |
+// 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/synthetic_touch_event_android.h" |
+ |
+#include "content/browser/android/content_view_core_impl.h" |
+#include "jni/SyntheticTouchEvent_jni.h" |
+#include "third_party/WebKit/public/web/WebInputEvent.h" |
+ |
+namespace { |
+bool g_jni_initialized = false; |
+ |
+void RegisterNativesIfNeeded(JNIEnv* env) { |
+ if (!g_jni_initialized) { |
+ content::RegisterNativesImpl(env); |
+ g_jni_initialized = true; |
+ } |
+} |
+} // namespace |
+ |
+namespace content { |
+ |
+SyntheticTouchEventAndroid::SyntheticTouchEventAndroid( |
+ ContentViewCoreImpl* content_view_core) |
+ : env_(base::android::AttachCurrentThread()), |
+ java_touch_event_(content_view_core->CreateSyntheticTouchEvent()), |
+ savedDownTime_(0) { |
+ CHECK(! java_touch_event_.is_null()); |
+ RegisterNativesIfNeeded(env_); |
+} |
+ |
+SyntheticTouchEventAndroid::~SyntheticTouchEventAndroid() { |
+} |
+ |
+void SyntheticTouchEventAndroid::reset() { |
+ Java_SyntheticTouchEvent_reset(env_, java_touch_event_.obj()); |
+} |
+ |
+long SyntheticTouchEventAndroid::GetCurrentTime() { |
+ return Java_SyntheticTouchEvent_getCurrentTime(env_); |
+} |
+ |
+void SyntheticTouchEventAndroid::SetDownTime(long downTime) { |
+ Java_SyntheticTouchEvent_setDownTime(env_, java_touch_event_.obj(), |
+ downTime); |
+} |
+ |
+void SyntheticTouchEventAndroid::AddPointer(int x, int y, int id) { |
+ Java_SyntheticTouchEvent_addPointer(env_, java_touch_event_.obj(), x, y, id); |
+} |
+ |
+void SyntheticTouchEventAndroid::Inject(Action action) { |
+ Java_SyntheticTouchEvent_inject(env_, java_touch_event_.obj(), |
+ static_cast<int>(action)); |
+} |
+ |
+void SyntheticTouchEventAndroid::InjectWebTouchEvent( |
+ const WebKit::WebTouchEvent* web_touch) { |
+ reset(); |
Dominik Grewe
2013/10/10 14:01:45
If I understand correctly you're trying to make th
kouhei (in TOK)
2013/10/15 02:10:02
I think the cost of reset() here is negligible, as
Dominik Grewe
2013/10/15 09:10:55
You would also save the call to SetDownTime() on e
jdduke (slow)
2013/10/16 15:05:25
While JNI calls are "slow", that is only in the re
kouhei (in TOK)
2013/10/17 05:44:13
Thanks for your comments! I think I can go with th
|
+ |
+ SyntheticTouchEventAndroid::Action action = |
+ SyntheticTouchEventAndroid::ActionInvalid; |
+ switch (web_touch->type) { |
+ case WebKit::WebInputEvent::TouchStart: |
+ action = SyntheticTouchEventAndroid::ActionStart; |
+ savedDownTime_ = GetCurrentTime(); |
+ break; |
+ case WebKit::WebInputEvent::TouchMove: |
+ action = SyntheticTouchEventAndroid::ActionMove; |
+ break; |
+ case WebKit::WebInputEvent::TouchCancel: |
+ action = SyntheticTouchEventAndroid::ActionCancel; |
+ break; |
+ case WebKit::WebInputEvent::TouchEnd: |
+ action = SyntheticTouchEventAndroid::ActionEnd; |
+ break; |
+ default: |
+ NOTREACHED(); |
+ } |
+ DCHECK(savedDownTime_ > 0); |
+ SetDownTime(savedDownTime_); |
+ |
+ const unsigned num_touches = web_touch->touchesLength; |
+ for (unsigned i = 0; i < num_touches; ++ i) { |
+ const WebKit::WebTouchPoint* point = &web_touch->touches[i]; |
+ AddPointer(point->position.x, point->position.y, point->id); |
+ } |
+ |
+ Inject(action); |
+ |
+ if (web_touch->type == WebKit::WebInputEvent::TouchCancel || |
+ web_touch->type == WebKit::WebInputEvent::TouchEnd) |
+ savedDownTime_ = 0; |
+} |
+ |
+} // namespace content |