Searched defs:hasUserGesture (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/components/navigation_interception/android/java/src/org/chromium/components/navigation_interception/
H A DNavigationParams.java15 public final boolean hasUserGesture; field in class:NavigationParams
21 public NavigationParams(String url, boolean isPost, boolean hasUserGesture, argument
25 this.hasUserGesture = hasUserGesture;
31 public static NavigationParams create(String url, boolean isPost, boolean hasUserGesture, argument
33 return new NavigationParams(url, isPost, hasUserGesture, pageTransitionType,
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContentsIoThreadClient.java49 boolean hasUserGesture, String method, String[] requestHeaderNames,
55 params.hasUserGesture = hasUserGesture;
48 shouldInterceptRequest(String url, boolean isMainFrame, boolean hasUserGesture, String method, String[] requestHeaderNames, String[] requestHeaderValues) argument
H A DAwContentsClient.java96 public boolean hasUserGesture; field in class:AwContentsClient.ShouldInterceptRequestParams
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DDownloadController.java67 String cookie, String referer, boolean hasUserGesture,
79 .setHasUserGesture(hasUserGesture)
65 newHttpGetDownload(ContentViewCore view, String url, String userAgent, String contentDisposition, String mimeType, String cookie, String referer, boolean hasUserGesture, String filename, long contentLength) argument
H A DDownloadInfo.java97 public boolean hasUserGesture() { method in class:DownloadInfo
199 public Builder setHasUserGesture(boolean hasUserGesture) { argument
200 mHasUserGesture = hasUserGesture;
248 .setHasUserGesture(downloadInfo.hasUserGesture())
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLRequest.cpp245 bool WebURLRequest::hasUserGesture() const function in class:blink::WebURLRequest
247 return m_private->m_resourceRequest->hasUserGesture();
250 void WebURLRequest::setHasUserGesture(bool hasUserGesture) argument
252 m_private->m_resourceRequest->setHasUserGesture(hasUserGesture);
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceRequest.h173 bool hasUserGesture() const { return m_hasUserGesture; } function in class:blink::ResourceRequest
174 void setHasUserGesture(bool hasUserGesture) { m_hasUserGesture = hasUserGesture; } argument

Completed in 411 milliseconds