HomeSort by relevance Sort by last modified time
    Searched refs:userGesture (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/WebCore/platform/network/android/
ResourceRequest.h 53 void setUserGesture(bool userGesture) { m_userGesture = userGesture; }
  /external/webkit/WebCore/loader/
RedirectScheduler.h 58 void scheduleLocationChange(const String& url, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true, bool userGesture = false);
60 void scheduleRefresh(bool userGesture = false);
FrameLoader.h 216 void changeLocation(const KURL&, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true, bool userGesture = false, bool refresh = false);
217 void urlSelected(const ResourceRequest&, const String& target, PassRefPtr<Event>, bool lockHistory, bool lockBackForwardList, bool userGesture, ReferrerPolicy);
EmptyClients.h 74 virtual void focus(bool userGesture) { }
FrameLoader.cpp 330 void FrameLoader::changeLocation(const KURL& url, const String& referrer, bool lockHistory, bool lockBackForwardList, bool userGesture, bool refresh)
336 request.setUserGesture(userGesture);
339 if (m_frame->script()->executeIfJavaScriptURL(request.url(), userGesture))
342 urlSelected(request, "_self", 0, lockHistory, lockBackForwardList, userGesture, SendReferrer);
345 void FrameLoader::urlSelected(const ResourceRequest& request, const String& passedTarget, PassRefPtr<Event> triggeringEvent, bool lockHistory, bool lockBackForwardList, bool userGesture, ReferrerPolicy referrerPolicy)
349 if (m_frame->script()->executeIfJavaScriptURL(request.url(), userGesture, false))
    [all...]
  /external/webkit/WebCore/bindings/generic/
BindingDOMWindow.h 113 bool userGesture = processingUserGesture();
116 newFrame->loader()->changeLocation(completedUrl, referrer, false, false, userGesture);
118 newFrame->redirectScheduler()->scheduleLocationChange(completedUrl.string(), referrer, false, userGesture);
  /external/webkit/WebCore/bindings/
ScriptControllerBase.cpp 68 bool ScriptController::executeIfJavaScriptURL(const KURL& url, bool userGesture, bool replaceDocument)
84 result = executeScript(script, userGesture);
  /external/webkit/WebCore/bindings/js/
JSDocumentCustom.cpp 90 bool userGesture = activeFrame->script()->processingUserGesture(currentWorld(exec));
91 frame->redirectScheduler()->scheduleLocationChange(str, activeFrame->loader()->outgoingReferrer(), !activeFrame->script()->anyPageIsProcessingUserGesture(), false, userGesture);
ScriptController.h 97 bool executeIfJavaScriptURL(const KURL&, bool userGesture = false, bool replaceDocument = true);
JSDOMWindowCustom.cpp 710 bool userGesture = processingUserGesture(exec);
713 newFrame->loader()->changeLocation(completedURL, referrer, false, false, userGesture);
715 newFrame->redirectScheduler()->scheduleLocationChange(completedURL.string(), referrer, !lexicalFrame->script()->anyPageIsProcessingUserGesture(), false, userGesture);
773 bool userGesture = processingUserGesture(exec);
780 frame->redirectScheduler()->scheduleLocationChange(completedURL, referrer, !lexicalFrame->script()->anyPageIsProcessingUserGesture(), false, userGesture);
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 86 boolean userGesture, Message resultMsg) {
87 return mWrappedClient.onCreateWindow(view, dialog, userGesture, resultMsg);
  /external/webkit/WebCore/bindings/v8/
ScriptController.h 71 bool executeIfJavaScriptURL(const KURL&, bool userGesture = false, bool replaceDocument = true);
  /external/webkit/WebKit/android/jni/
WebCoreFrameBridge.h 95 WebCore::Frame* createWindow(bool dialog, bool userGesture);
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 91 * @param userGesture True if the request was initiated by a user gesture
105 boolean userGesture, Message resultMsg) {
BrowserFrame.java 631 * @param userGesture
643 boolean userGesture,
713 + ", userGesture=" + userGesture);
719 mainResource, userGesture, postDataIdentifier, username, password);
787 private BrowserFrame createWindow(boolean dialog, boolean userGesture) {
788 WebView w = mCallbackProxy.createWindow(dialog, userGesture);
    [all...]
LoadListener.java 141 boolean isMainResource, boolean userGesture, long postIdentifier,
146 isMainPageLoader, isMainResource, userGesture, postIdentifier,
156 boolean isMainResource, boolean userGesture, long postIdentifier,
171 mUserGesture = userGesture;
    [all...]
CallbackProxy.java     [all...]
  /external/webkit/WebCore/page/
Chrome.h 81 void focus(bool userGesture) const;
ChromeClient.h 81 virtual void focus(bool userGesture) = 0;
Chrome.cpp 131 void Chrome::focus(bool userGesture) const
133 m_client->focus(userGesture);
  /external/webkit/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 64 virtual void focus(bool userGesture);
ChromeClientAndroid.cpp 139 void ChromeClientAndroid::focus(bool userGesture) {
144 // userGesture to be true.
145 bool userGesture = true;
149 if (userGesture)
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebChromeClientTest.java 449 public boolean onCreateWindow(WebView view, boolean dialog, boolean userGesture,
  /packages/apps/Browser/src/com/android/browser/
Tab.java     [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8DOMWindowCustom.cpp 624 bool userGesture = processingUserGesture();
630 frame->redirectScheduler()->scheduleLocationChange(completedUrl, referrer, false, userGesture);

Completed in 569 milliseconds

1 2