Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
Dhistory.js289 _joinParameters: function(stateObject) argument
292 for (var key in stateObject) {
293 var value = stateObject[key];
/external/chromium_org/third_party/WebKit/Source/web/
DWebHistoryItem.cpp164 WebSerializedScriptValue WebHistoryItem::stateObject() const in stateObject() function in blink::WebHistoryItem
166 return WebSerializedScriptValue(m_private->stateObject()); in stateObject()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoader.cpp269 …itType historyCommitType, bool isPushOrReplaceState, PassRefPtr<SerializedScriptValue> stateObject) in setHistoryItemStateForCommit() argument
286 m_currentItem->setStateObject(stateObject); in setHistoryItemStateForCommit()
350 m_frame->domWindow()->statePopped(m_provisionalItem->stateObject()); in didBeginDocument()
554 void FrameLoader::loadInSameDocument(const KURL& url, PassRefPtr<SerializedScriptValue> stateObject in loadInSameDocument() argument
557 ASSERT(!stateObject || type == FrameLoadTypeBackForward); in loadInSameDocument()
595 … m_frame->domWindow()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue()); in loadInSameDocument()
1437 … loadInSameDocument(item->url(), item->stateObject(), FrameLoadTypeBackForward, NotClientRedirect); in loadHistoryItem()
DHistoryItem.h89 SerializedScriptValue* stateObject() const { return m_stateObject.get(); } in stateObject() function
DFrameLoader.h223 …void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> stateObject, FrameLoadType,…
/external/chromium_org/content/renderer/
Dhistory_serialization.cc90 if (!item.stateObject().isNull()) in GenerateFrameStateFromItem()
91 state->state_object = item.stateObject().toString(); in GenerateFrameStateFromItem()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DHistory.cpp73 return historyItem->stateObject(); in stateInternal()
DLocalDOMWindow.cpp478 void LocalDOMWindow::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject) in enqueuePopstateEvent() argument
484 dispatchEvent(PopStateEvent::create(stateObject, &history())); in enqueuePopstateEvent()
487 void LocalDOMWindow::statePopped(PassRefPtr<SerializedScriptValue> stateObject) in statePopped() argument
495 enqueuePopstateEvent(stateObject); in statePopped()
497 m_pendingStateObject = stateObject; in statePopped()
/external/chromium_org/third_party/WebKit/public/web/
DWebHistoryItem.h104 BLINK_EXPORT WebSerializedScriptValue stateObject() const;