summaryrefslogtreecommitdiffstats
path: root/WebKit/android
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2010-07-15 16:46:22 +0100
committerKristian Monsen <kristianm@google.com>2010-07-15 16:46:22 +0100
commitbbe299e200c3fe5dbfd0696096de121f9057eb0d (patch)
treeaed7c96a697c4c677d4a392fdeca283d743b572d /WebKit/android
parentff80790be406da04e7afbd8aea7bb0e26f1f08f0 (diff)
downloadexternal_webkit-bbe299e200c3fe5dbfd0696096de121f9057eb0d.zip
external_webkit-bbe299e200c3fe5dbfd0696096de121f9057eb0d.tar.gz
external_webkit-bbe299e200c3fe5dbfd0696096de121f9057eb0d.tar.bz2
Removing ANDROID_USER_GESTURE ifdef
As discussed on CL https://android-git.corp.google.com/g/#change,56717, removing the ifdef is a good thing as this is not a feature we want to turn on and off. Change-Id: Ic7a062e2bb15850ca17fcb46fbd25d786e08028d
Diffstat (limited to 'WebKit/android')
-rw-r--r--WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp5
-rw-r--r--WebKit/android/jni/WebCoreFrameBridge.cpp8
2 files changed, 1 insertions, 12 deletions
diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
index af74638..6495bb4 100644
--- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
@@ -127,11 +127,8 @@ float ChromeClientAndroid::scaleFactor()
void ChromeClientAndroid::focus()
{
ASSERT(m_webFrame);
-#ifdef ANDROID_USER_GESTURE_CHECK
bool isUserGesture = UserGestureIndicator::processingUserGesture();
-#else
- bool isUserGesture = true;
-#endif
+
// Ask the application to focus this WebView if the action is intiated by the user
if (isUserGesture)
m_webFrame->requestFocus();
diff --git a/WebKit/android/jni/WebCoreFrameBridge.cpp b/WebKit/android/jni/WebCoreFrameBridge.cpp
index 7324173..f57a94f 100644
--- a/WebKit/android/jni/WebCoreFrameBridge.cpp
+++ b/WebKit/android/jni/WebCoreFrameBridge.cpp
@@ -482,11 +482,7 @@ WebFrame::startLoadingResource(WebCore::ResourceHandle* loader,
jstring jPasswordString = loaderInternal->m_pass.isEmpty() ?
NULL : env->NewString(loaderInternal->m_pass.characters(), loaderInternal->m_pass.length());
-#ifdef ANDROID_USER_GESTURE_CHECK
bool isUserGesture = UserGestureIndicator::processingUserGesture();
-#else
- bool isUserGesture = true;
-#endif
jobject jLoadListener =
env->CallObjectMethod(obj.get(), mJavaFrame->mStartLoadingResource,
(int)loader, jUrlStr, jMethodStr, jHeaderMap,
@@ -756,11 +752,7 @@ WebFrame::canHandleRequest(const WebCore::ResourceRequest& request)
if (equalIgnoringCase(request.httpMethod(), "POST"))
return true;
WebCore::KURL requestUrl = request.url();
-#ifdef ANDROID_USER_GESTURE_CHECK
bool isUserGesture = UserGestureIndicator::processingUserGesture();
-#else
- bool isUserGesture = true;
-#endif
if (!mUserInitiatedClick && !isUserGesture &&
(requestUrl.protocolIs("http") || requestUrl.protocolIs("https") ||
requestUrl.protocolIs("file") || requestUrl.protocolIs("about") ||