Searched refs:stateObject (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/page/
H A DHistory.cpp71 return historyItem->stateObject();
/macosx-10.9.5/WebCore-7537.78.1/history/
H A DCachedFrame.cpp142 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
H A DHistoryItem.h149 PassRefPtr<SerializedScriptValue> stateObject() const { return m_stateObject; } function in class:WebCore::HistoryItem
H A DHistoryItem.cpp560 if (stateObject() || otherItem->stateObject())
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DHistoryController.cpp855 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
869 m_currentItem->setStateObject(stateObject);
883 void HistoryController::replaceState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
891 m_currentItem->setStateObject(stateObject);
H A DFrameLoader.h368 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation);
H A DFrameLoader.cpp1018 void FrameLoader::loadInSameDocument(const KURL& url, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation) argument
1021 ASSERT(!stateObject || (stateObject && !isNewNavigation));
1028 if (isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject) {
1071 m_frame->document()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue());
1856 m_pendingStateObject = history()->currentItem()->stateObject();
3127 loadInSameDocument(item->url(), item->stateObject(), false);
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp4663 void Document::statePopped(PassRefPtr<SerializedScriptValue> stateObject) argument
4671 enqueuePopstateEvent(stateObject);
4673 m_pendingStateObject = stateObject;
4937 void Document::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject) argument
4943 dispatchWindowEvent(PopStateEvent::create(stateObject, domWindow() ? domWindow()->history() : 0));
H A DDocument.h1029 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject);

Completed in 417 milliseconds