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 58 ScheduledNavigation(double delay, bool lockBackForwardList, bool wasDuringLoad, bool isLocationChange)
60 , m_lockBackForwardList(lockBackForwardList)
76 bool lockBackForwardList() const { return m_lockBackForwardList; }
77 void setLockBackForwardList(bool lockBackForwardList) { m_lockBackForwardList = lockBackForwardList; }
101 ScheduledURLNavigation(double delay, SecurityOrigin* securityOrigin, const String& url, const String& referrer, bool lockBackForwardList, bool duringLoad, bool isLocationChange)
102 : ScheduledNavigation(delay, lockBackForwardList, duringLoad, isLocationChange)
114 request.setLockBackForwardList(lockBackForwardList());
143 ScheduledRedirect(double delay, SecurityOrigin* securityOrigin, const String& url, bool lockBackForwardList)
144 : ScheduledURLNavigation(delay, securityOrigin, url, String(), lockBackForwardList, false, false
    [all...]
FrameLoadRequest.h 88 bool lockBackForwardList() const { return m_lockBackForwardList; }
89 void setLockBackForwardList(bool lockBackForwardList) { m_lockBackForwardList = lockBackForwardList; }
NavigationScheduler.h 78 void scheduleLocationChange(SecurityOrigin*, const String& url, const String& referrer, bool lockBackForwardList = true);
FrameLoader.cpp 844 if (request.lockBackForwardList())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElementBase.h 71 void openURL(bool lockBackForwardList = true);
HTMLFrameOwnerElement.cpp 126 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const AtomicString& frameName, bool lockBackForwardList)
130 contentFrame()->navigationScheduler()->scheduleLocationChange(document()->securityOrigin(), url.string(), parentFrame->loader()->outgoingReferrer(), lockBackForwardList);
HTMLFrameOwnerElement.h 66 bool loadOrRedirectSubframe(const KURL&, const AtomicString& frameName, bool lockBackForwardList);
HTMLFrameElementBase.cpp 73 void HTMLFrameElementBase::openURL(bool lockBackForwardList)
93 if (!loadOrRedirectSubframe(url, m_frameName, lockBackForwardList))

Completed in 3599 milliseconds