Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: content/browser/android/content_view_core_impl.h

Issue 120513005: [Android] Perform eager gesture recognition on MotionEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove ZoomManager Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/android/content_view_core_impl.h
diff --git a/content/browser/android/content_view_core_impl.h b/content/browser/android/content_view_core_impl.h
index f61e01b3a482ea52cb7bc256e2290a8be07a4784..f30f8a55bbfc6797baf0b7274b074026dafda2ed 100644
--- a/content/browser/android/content_view_core_impl.h
+++ b/content/browser/android/content_view_core_impl.h
@@ -14,6 +14,7 @@
#include "base/i18n/rtl.h"
#include "base/memory/scoped_ptr.h"
#include "base/process/process.h"
+#include "content/browser/renderer_host/input/gesture_event_queue.h"
#include "content/browser/renderer_host/render_widget_host_view_android.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/android/content_view_core.h"
@@ -37,7 +38,8 @@ struct MenuItem;
// TODO(jrg): this is a shell. Upstream the rest.
class ContentViewCoreImpl : public ContentViewCore,
public NotificationObserver,
- public WebContentsObserver {
+ public WebContentsObserver,
+ public GestureEventQueueClient {
public:
static ContentViewCoreImpl* FromWebContents(WebContents* web_contents);
ContentViewCoreImpl(JNIEnv* env,
@@ -94,11 +96,12 @@ class ContentViewCoreImpl : public ContentViewCore,
JNIEnv* env, jobject obj) const;
jboolean IsIncognito(JNIEnv* env, jobject obj);
void SendOrientationChangeEvent(JNIEnv* env, jobject obj, jint orientation);
- jboolean SendTouchEvent(JNIEnv* env,
- jobject obj,
- jlong time_ms,
- jint type,
- jobjectArray pts);
+ void OnTouchEventHandlingBegin(JNIEnv* env,
+ jobject obj,
+ jlong time_ms,
+ jint type,
+ jobjectArray pts);
+ void OnTouchEventHandlingEnd(JNIEnv* env, jobject obj);
jboolean SendMouseMoveEvent(JNIEnv* env,
jobject obj,
jlong time_ms,
@@ -123,8 +126,8 @@ class ContentViewCoreImpl : public ContentViewCore,
jboolean disambiguation_popup_tap);
void SingleTapUnconfirmed(JNIEnv* env, jobject obj, jlong time_ms,
jfloat x, jfloat y);
- void ShowPressState(JNIEnv* env, jobject obj, jlong time_ms,
- jfloat x, jfloat y);
+ void ShowPress(JNIEnv* env, jobject obj, jlong time_ms,
+ jfloat x, jfloat y);
void TapCancel(JNIEnv* env, jobject obj, jlong time_ms,
jfloat x, jfloat y);
void TapDown(JNIEnv* env, jobject obj, jlong time_ms,
@@ -269,7 +272,7 @@ class ContentViewCoreImpl : public ContentViewCore,
bool HasFocus();
void ConfirmTouchEvent(InputEventAckState ack_result);
- void OnFlingStartEventAck(InputEventAckState ack_result);
+ void OnUnhandledFlingStartEventAck(bool had_consumer, float vx, float vy);
void OnScrollBeginEventAck();
void OnScrollUpdateGestureConsumed();
void OnScrollEndEventAck();
@@ -335,6 +338,10 @@ class ContentViewCoreImpl : public ContentViewCore,
// WebContentsObserver implementation.
virtual void RenderViewReady() OVERRIDE;
+ // GestureEventQueueClient implementation.
+ virtual void ForwardGestureEvent(
+ const blink::WebGestureEvent& event) OVERRIDE;
+
// --------------------------------------------------------------------------
// Other private methods and data
// --------------------------------------------------------------------------
@@ -356,6 +363,7 @@ class ContentViewCoreImpl : public ContentViewCore,
void DeleteScaledSnapshotTexture();
void SendGestureEvent(const blink::WebGestureEvent& event);
+ void SendSyntheticGestureEvent(const blink::WebGestureEvent& event);
// Update focus state of the RenderWidgetHostView.
void SetFocusInternal(bool focused);
@@ -395,6 +403,11 @@ class ContentViewCoreImpl : public ContentViewCore,
bool geolocation_needs_pause_;
+ GestureEventQueue gesture_event_queue_;
+ bool handling_touch_event_;
+ blink::WebTouchEvent pending_touch_event_;
+ GestureEventPacket pending_gesture_packet_;
+
DISALLOW_COPY_AND_ASSIGN(ContentViewCoreImpl);
};

Powered by Google App Engine
This is Rietveld 408576698