Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/dom/
DPopStateEvent.cpp34 PopStateEvent::PopStateEvent(PassRefPtr<SerializedScriptValue> stateObject) in PopStateEvent() argument
36 , m_stateObject(stateObject) in PopStateEvent()
44 …AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject) in initPopStateEvent() argument
51 m_stateObject = stateObject; in initPopStateEvent()
DPopStateEvent.h41 static PassRefPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue> stateObject) in create() argument
43 return adoptRef(new PopStateEvent(stateObject)); in create()
DDocument.cpp4597 void Document::statePopped(SerializedScriptValue* stateObject) in statePopped() argument
4605 enqueuePopstateEvent(stateObject); in statePopped()
4607 m_pendingStateObject = stateObject; in statePopped()
4800 void Document::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject) in enqueuePopstateEvent() argument
4803 dispatchWindowEvent(PopStateEvent::create(stateObject)); in enqueuePopstateEvent()
DDocument.h1050 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject);
/external/webkit/Source/WebKit/chromium/src/
DWebHistoryItem.cpp226 WebSerializedScriptValue WebHistoryItem::stateObject() const in stateObject() function in WebKit::WebHistoryItem
228 return WebSerializedScriptValue(m_private->stateObject()); in stateObject()
DFrameLoaderClientImpl.cpp606 bool isHashChange = !currentItem || !currentItem->stateObject(); in dispatchDidNavigateWithinPage()
/external/webkit/Source/WebCore/history/
DCachedFrame.cpp116 …ument->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject()… in restore()
DHistoryItem.h146 SerializedScriptValue* stateObject() const { return m_stateObject.get(); } in stateObject() function
DHistoryItem.cpp556 if (stateObject() || otherItem->stateObject()) in shouldDoSameDocumentNavigationTo()
/external/webkit/Source/WebCore/loader/
DHistoryController.cpp788 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& titl… in pushState() argument
802 m_currentItem->setStateObject(stateObject); in pushState()
812 void HistoryController::replaceState(PassRefPtr<SerializedScriptValue> stateObject, const String& t… in replaceState() argument
820 m_currentItem->setStateObject(stateObject); in replaceState()
DFrameLoader.cpp1167 void FrameLoader::loadInSameDocument(const KURL& url, SerializedScriptValue* stateObject, bool isNe… in loadInSameDocument() argument
1170 ASSERT(!stateObject || (stateObject && !isNewNavigation)); in loadInSameDocument()
1176 if (isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject) { in loadInSameDocument()
1220 … m_frame->document()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue()); in loadInSameDocument()
2058 m_pendingStateObject = history()->currentItem()->stateObject(); in transitionToCommitted()
3232 loadInSameDocument(item->url(), item->stateObject(), false); in loadSameDocumentItem()
DFrameLoader.h416 void loadInSameDocument(const KURL&, SerializedScriptValue* stateObject, bool isNewNavigation);
/external/webkit/Source/WebKit/chromium/public/
DWebHistoryItem.h111 WEBKIT_API WebSerializedScriptValue stateObject() const;
/external/chromium/webkit/glue/
Dglue_serialize.cc324 bool has_state_object = !item.stateObject().isNull(); in WriteHistoryItem()
327 WriteString(item.stateObject().toString(), obj); in WriteHistoryItem()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2925642 (WebCore::HistoryItem::stateObject):