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

/external/webkit/Source/WebCore/dom/
H A DPopStateEvent.cpp34 PopStateEvent::PopStateEvent(PassRefPtr<SerializedScriptValue> stateObject) argument
36 , m_stateObject(stateObject)
44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject) argument
51 m_stateObject = stateObject;
H A DPopStateEvent.h41 static PassRefPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue> stateObject) argument
43 return adoptRef(new PopStateEvent(stateObject));
H A DDocument.cpp4594 void Document::statePopped(SerializedScriptValue* stateObject)
4602 enqueuePopstateEvent(stateObject);
4604 m_pendingStateObject = stateObject;
4797 void Document::enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject)
4800 dispatchWindowEvent(PopStateEvent::create(stateObject));
H A DDocument.h1045 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject);
/external/webkit/Source/WebKit/chromium/src/
H A DWebHistoryItem.cpp226 WebSerializedScriptValue WebHistoryItem::stateObject() const function in class:WebKit::WebHistoryItem
228 return WebSerializedScriptValue(m_private->stateObject());
H A DFrameLoaderClientImpl.cpp606 bool isHashChange = !currentItem || !currentItem->stateObject();
/external/webkit/Source/WebKit/chromium/public/
H A DWebHistoryItem.h111 WEBKIT_API WebSerializedScriptValue stateObject() const;
/external/webkit/Source/WebCore/history/
H A DCachedFrame.cpp116 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
H A DHistoryItem.h146 SerializedScriptValue* stateObject() const { return m_stateObject.get(); } function in class:WebCore::HistoryItem
H A DHistoryItem.cpp556 if (stateObject() || otherItem->stateObject())
/external/webkit/Source/WebCore/loader/
H A DHistoryController.cpp788 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
802 m_currentItem->setStateObject(stateObject);
812 void HistoryController::replaceState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString) argument
820 m_currentItem->setStateObject(stateObject);
H A DFrameLoader.h416 void loadInSameDocument(const KURL&, SerializedScriptValue* stateObject, bool isNewNavigation);
H A DFrameLoader.cpp1167 void FrameLoader::loadInSameDocument(const KURL& url, SerializedScriptValue* stateObject, bool isNewNavigation) argument
1170 ASSERT(!stateObject || (stateObject && !isNewNavigation));
1176 if (isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject) {
1220 m_frame->document()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue());
2058 m_pendingStateObject = history()->currentItem()->stateObject();
3232 loadInSameDocument(item->url(), item->stateObject(), false);
/external/chromium/webkit/glue/
H A Dglue_serialize.cc56 // 7: Adds support for stateObject
324 bool has_state_object = !item.stateObject().isNull();
327 WriteString(item.stateObject().toString(), obj);

Completed in 1103 milliseconds