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

/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DSessionStateConversion.cpp81 if (RefPtr<SerializedScriptValue> stateObject = historyItem.stateObject())
82 frameState.stateObjectData = stateObject->data();
/macosx-10.10/WebCore-7600.1.25/page/
H A DHistory.cpp71 return historyItem->stateObject();
/macosx-10.10/WebCore-7600.1.25/history/
H A DCachedFrame.cpp130 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
H A DHistoryItem.cpp466 if (stateObject() || otherItem->stateObject())
H A DHistoryItem.h129 PassRefPtr<SerializedScriptValue> stateObject() const { return m_stateObject; } function in class:WebCore::HistoryItem
/macosx-10.10/WebCore-7600.1.25/loader/
H A DHistoryController.cpp838 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
852 m_currentItem->setStateObject(stateObject);
864 void HistoryController::replaceState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
872 m_currentItem->setStateObject(stateObject);
H A DFrameLoader.h365 void loadInSameDocument(const URL&, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation);
H A DFrameLoader.cpp1070 void FrameLoader::loadInSameDocument(const URL& url, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation) argument
1073 ASSERT(!stateObject || (stateObject && !isNewNavigation));
1080 if (isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject) {
1123 m_frame.document()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue());
1944 m_pendingStateObject = history().currentItem()->stateObject();
3154 loadInSameDocument(item->url(), item->stateObject(), false);
/macosx-10.10/WebCore-7600.1.25/dom/
H A DDocument.cpp4754 void Document::statePopped(PassRefPtr<SerializedScriptValue> stateObject) argument
4762 enqueuePopstateEvent(stateObject);
4764 m_pendingStateObject = stateObject;
5062 void Document::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject) argument
5065 dispatchWindowEvent(PopStateEvent::create(stateObject, m_domWindow ? m_domWindow->history() : nullptr));
H A DDocument.h1110 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject);

Completed in 280 milliseconds