summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport
diff options
context:
space:
mode:
authorPatrick Scott <phanna@android.com>2011-01-13 10:29:00 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-01-13 10:29:00 -0800
commit395bf85b78e33e2a6f685669fc07e9d3fcc251cd (patch)
treea417660689b3024fa55ccd4abf9e459d3e7c0bc2 /WebKit/android/WebCoreSupport
parent2affce26ab8f173609de60771c0fbc1ae23a6126 (diff)
parente3a056840d61b1faad8baffd5b800be03e0e7f79 (diff)
downloadexternal_webkit-395bf85b78e33e2a6f685669fc07e9d3fcc251cd.zip
external_webkit-395bf85b78e33e2a6f685669fc07e9d3fcc251cd.tar.gz
external_webkit-395bf85b78e33e2a6f685669fc07e9d3fcc251cd.tar.bz2
Merge "Remove temporary work-around for auto login." into honeycomb
Diffstat (limited to 'WebKit/android/WebCoreSupport')
-rw-r--r--WebKit/android/WebCoreSupport/WebUrlLoaderClient.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/WebKit/android/WebCoreSupport/WebUrlLoaderClient.cpp b/WebKit/android/WebCoreSupport/WebUrlLoaderClient.cpp
index 596128a..d6224e0 100644
--- a/WebKit/android/WebCoreSupport/WebUrlLoaderClient.cpp
+++ b/WebKit/android/WebCoreSupport/WebUrlLoaderClient.cpp
@@ -33,7 +33,6 @@
#include "ResourceHandle.h"
#include "ResourceHandleClient.h"
#include "ResourceResponse.h"
-#include "UserGestureIndicator.h"
#include "WebCoreFrameBridge.h"
#include "WebRequest.h"
#include "WebResourceRequest.h"
@@ -345,11 +344,6 @@ void WebUrlLoaderClient::willSendRequest(PassOwnPtr<WebResponse> webResponse)
if (!isActive())
return;
- // FIXME: This implies that the original request was from a user gesture.
- // For now, this is probably ok as this is just here to get the auto-login
- // demo working. b/3291580.
- WebCore::UserGestureIndicator gesture(WebCore::DefinitelyProcessingUserGesture);
-
KURL url = webResponse->createKurl();
OwnPtr<WebCore::ResourceRequest> resourceRequest(new WebCore::ResourceRequest(url));
m_resourceHandle->client()->willSendRequest(m_resourceHandle.get(), *resourceRequest, webResponse->createResourceResponse());