HomeSort by relevance Sort by last modified time
    Searched refs:lockHistory (Results 1 - 10 of 10) sorted by null

  /external/webkit/WebCore/loader/
RedirectScheduler.cpp 61 const bool lockHistory;
68 ScheduledRedirection(double delay, const String& url, bool lockHistory, bool lockBackForwardList, bool wasUserGesture, bool refresh)
73 , lockHistory(lockHistory)
83 ScheduledRedirection(const String& url, const String& referrer, bool lockHistory, bool lockBackForwardList, bool wasUserGesture, bool refresh, bool duringLoad)
89 , lockHistory(lockHistory)
103 , lockHistory(false)
113 bool lockHistory, bool lockBackForwardList, PassRefPtr<Event> event, PassRefPtr<FormState> formState,
121 , lockHistory(lockHistory
    [all...]
RedirectScheduler.h 58 void scheduleLocationChange(const String& url, const String& referrer, bool lockHistory = true, bool lockBackForwardList = true, bool userGesture = false);
59 void scheduleFormSubmission(const FrameLoadRequest&, bool lockHistory, PassRefPtr<Event>, PassRefPtr<FormState>);
FrameLoader.h 112 void loadFrameRequest(const FrameLoadRequest&, bool lockHistory, bool lockBackForwardList, // Called by submitForm, calls loadPostRequest and loadURL.
115 void load(const ResourceRequest&, bool lockHistory); // Called by WebFrame, calls load(ResourceRequest, SubstituteData).
116 void load(const ResourceRequest&, const SubstituteData&, bool lockHistory); // Called both by WebFrame and internally, calls load(DocumentLoader*).
117 void load(const ResourceRequest&, const String& frameName, bool lockHistory); // Called by WebPluginController.
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);
222 bool lockHistory, PassRefPtr<Event>, PassRefPtr<FormState>);
417 bool lockHistory, FrameLoadType, PassRefPtr<FormState>);
421 const String& frameName, bool lockHistory, FrameLoadType, PassRefPtr<Event>, PassRefPtr<FormState>, bool);
423 bool lockHistory, FrameLoadType, PassRefPtr<Event>, PassRefPtr<FormState>, bool)
    [all...]
FrameLoader.cpp 330 void FrameLoader::changeLocation(const KURL& url, const String& referrer, bool lockHistory, bool lockBackForwardList, bool userGesture, bool refresh)
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)
364 loadFrameRequest(frameRequest, lockHistory, lockBackForwardList, triggeringEvent, 0, referrerPolicy);
452 bool lockHistory, PassRefPtr<Event> event, PassRefPtr<FormState> formState)
530 targetFrame->redirectScheduler()->scheduleFormSubmission(frameRequest, lockHistory, event, formState);
    [all...]
  /external/webkit/WebCore/loader/win/
FrameLoaderWin.cpp 42 frameWin->client()->openURL(request.resourceRequest().url().string(), request.lockHistory());
  /external/webkit/WebCore/bindings/v8/
V8Utilities.cpp 118 void navigateIfAllowed(Frame* frame, const KURL& url, bool lockHistory, bool lockBackForwardList)
125 frame->redirectScheduler()->scheduleLocationChange(url.string(), callingFrame->loader()->outgoingReferrer(), lockHistory, lockBackForwardList, processingUserGesture());
V8Utilities.h 55 void navigateIfAllowed(Frame*, const KURL&, bool lockHistory, bool lockBackForwardList);
  /external/webkit/WebCore/html/
HTMLFormElement.h 134 void submit(Event*, bool activateSubmitButton, bool lockHistory, FormSubmissionTrigger);
HTMLFormElement.cpp 341 void HTMLFormElement::submit(Event* event, bool activateSubmitButton, bool lockHistory, FormSubmissionTrigger formSubmissionTrigger)
402 frame->loader()->submitForm("POST", m_url, data.release(), m_target, m_formDataBuilder.encodingType(), String(), lockHistory, event, formState.release());
405 frame->loader()->submitForm("POST", m_url, createFormData(boundary.data()), m_target, m_formDataBuilder.encodingType(), boundary.data(), lockHistory, event, formState.release());
409 frame->loader()->submitForm("GET", m_url, createFormData(CString()), m_target, String(), String(), lockHistory, event, formState.release());
  /external/webkit/WebCore/bindings/js/
JSLocationCustom.cpp 187 static void navigateIfAllowed(ExecState* exec, Frame* frame, const KURL& url, bool lockHistory, bool lockBackForwardList)
194 frame->redirectScheduler()->scheduleLocationChange(url.string(), lexicalFrame->loader()->outgoingReferrer(), lockHistory, lockBackForwardList, processingUserGesture(exec));

Completed in 310 milliseconds