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

  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.cpp 59 ScheduledNavigation(double delay, bool lockBackForwardList, bool isLocationChange)
61 , m_lockBackForwardList(lockBackForwardList)
75 bool lockBackForwardList() const { return m_lockBackForwardList; }
99 ScheduledURLNavigation(double delay, Document* originDocument, const String& url, const Referrer& referrer, bool lockBackForwardList, bool isLocationChange)
100 : ScheduledNavigation(delay, lockBackForwardList, isLocationChange)
111 request.setLockBackForwardList(lockBackForwardList());
128 ScheduledRedirect(double delay, Document* originDocument, const String& url, bool lockBackForwardList)
129 : ScheduledURLNavigation(delay, originDocument, url, Referrer(), lockBackForwardList, false)
140 request.setLockBackForwardList(lockBackForwardList());
150 ScheduledLocationChange(Document* originDocument, const String& url, const Referrer& referrer, bool lockBackForwardList)
    [all...]
FrameLoadRequest.h 89 bool lockBackForwardList() const { return m_lockBackForwardList; }
90 void setLockBackForwardList(bool lockBackForwardList) { m_lockBackForwardList = lockBackForwardList; }
NavigationScheduler.h 80 void scheduleLocationChange(Document*, const String& url, const Referrer& referrer, bool lockBackForwardList = true);
FrameLoader.cpp 665 if (request.lockBackForwardList() || isScriptTriggeredFormSubmissionInChildFrame(request))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElementBase.h 70 void openURL(bool lockBackForwardList = true);
HTMLFrameOwnerElement.h 81 bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
HTMLFrameElementBase.cpp 73 void HTMLFrameElementBase::openURL(bool lockBackForwardList)
93 if (!loadOrRedirectSubframe(url, m_frameName, lockBackForwardList))
HTMLFrameOwnerElement.cpp 220 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const AtomicString& frameName, bool lockBackForwardList)
225 toLocalFrame(contentFrame())->navigationScheduler().scheduleLocationChange(&document(), url.string(), Referrer(document().outgoingReferrer(), document().referrerPolicy()), lockBackForwardList);

Completed in 77 milliseconds