Chromium Code Reviews| 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..cdbfbbb38e53db14b7a2b568d8813eab4176bea7 |
| --- /dev/null |
| +++ b/content/browser/renderer_host/synthetic_touch_event_android.cc |
| @@ -0,0 +1,74 @@ |
| +// 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()) { |
| + CHECK(! java_touch_event_.is_null()); |
|
Dominik Grewe
2013/10/16 09:22:10
Nit: Remove whitespace between unary operator and
kouhei (in TOK)
2013/10/17 05:44:13
Done.
|
| + RegisterNativesIfNeeded(env_); |
| +} |
| + |
| +SyntheticTouchEventAndroid::~SyntheticTouchEventAndroid() { |
| +} |
| + |
| +void SyntheticTouchEventAndroid::SetPointer(int index, int x, int y, int id) { |
| + Java_SyntheticTouchEvent_setPointer(env_, java_touch_event_.obj(), |
| + index, x, y, id); |
| +} |
| + |
| +void SyntheticTouchEventAndroid::Inject(Action action, int pointer_count) { |
| + Java_SyntheticTouchEvent_inject(env_, java_touch_event_.obj(), |
| + static_cast<int>(action), pointer_count); |
| +} |
| + |
| +void SyntheticTouchEventAndroid::InjectWebTouchEvent( |
| + const WebKit::WebTouchEvent* web_touch) { |
| + SyntheticTouchEventAndroid::Action action = |
| + SyntheticTouchEventAndroid::ActionInvalid; |
| + switch (web_touch->type) { |
| + case WebKit::WebInputEvent::TouchStart: |
| + action = SyntheticTouchEventAndroid::ActionStart; |
| + 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(); |
| + } |
| + const unsigned num_touches = web_touch->touchesLength; |
| + for (unsigned i = 0; i < num_touches; ++ i) { |
|
Dominik Grewe
2013/10/16 09:22:10
Nit: Same here, remove whitespace between '++' and
kouhei (in TOK)
2013/10/17 05:44:13
Done.
|
| + const WebKit::WebTouchPoint* point = &web_touch->touches[i]; |
| + SetPointer(i, point->position.x, point->position.y, point->id); |
| + } |
| + |
| + Inject(action, num_touches); |
| +} |
| + |
| +} // namespace content |