Home
last modified time | relevance | path

Searched refs:stateObject (Results 1 – 10 of 10) 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.cpp202 WebSerializedScriptValue WebHistoryItem::stateObject() const in stateObject() function in blink::WebHistoryItem
204 return WebSerializedScriptValue(m_private->stateObject()); in stateObject()
/external/chromium_org/content/public/renderer/
Dhistory_item_serialization.cc88 if (!item.stateObject().isNull()) in RecursivelyGenerateFrameState()
89 state->state_object = item.stateObject().toString(); in RecursivelyGenerateFrameState()
/external/chromium_org/third_party/WebKit/Source/core/loader/
DFrameLoader.cpp368 m_frame->domWindow()->statePopped(m_currentItem->stateObject()); in didBeginDocument()
579 void FrameLoader::loadInSameDocument(const KURL& url, PassRefPtr<SerializedScriptValue> stateObject in loadInSameDocument() argument
582 ASSERT(!stateObject || (stateObject && !isNewNavigation)); in loadInSameDocument()
593 …rwardList = isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject ? UpdateBackFor… in loadInSameDocument()
607 … m_frame->domWindow()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue()); in loadInSameDocument()
1470 loadInSameDocument(item->url(), item->stateObject(), false, NotClientRedirect); in loadHistoryItem()
DFrameLoader.h248 …void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavi…
/external/chromium_org/third_party/WebKit/Source/core/frame/
DHistory.cpp73 return historyItem->stateObject(); in stateInternal()
DDOMWindow.cpp464 void DOMWindow::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject) in enqueuePopstateEvent() argument
470 dispatchEvent(PopStateEvent::create(stateObject, history())); in enqueuePopstateEvent()
473 void DOMWindow::statePopped(PassRefPtr<SerializedScriptValue> stateObject) in statePopped() argument
481 enqueuePopstateEvent(stateObject); in statePopped()
483 m_pendingStateObject = stateObject; in statePopped()
/external/chromium_org/third_party/WebKit/public/web/
DWebHistoryItem.h99 BLINK_EXPORT WebSerializedScriptValue stateObject() const;
/external/chromium_org/third_party/WebKit/Source/core/history/
DHistoryItem.h86 SerializedScriptValue* stateObject() const { return m_stateObject.get(); } in stateObject() function
/external/chromium/webkit/glue/
Dglue_serialize.cc324 bool has_state_object = !item.stateObject().isNull(); in WriteHistoryItem()
327 WriteString(item.stateObject().toString(), obj); in WriteHistoryItem()