Searched refs:stateObject (Results 1 – 15 of 15) sorted by relevance
/external/webkit/Source/WebCore/dom/ |
D | PopStateEvent.cpp | 34 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()
|
D | PopStateEvent.h | 41 static PassRefPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue> stateObject) in create() argument 43 return adoptRef(new PopStateEvent(stateObject)); in create()
|
D | Document.cpp | 4597 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()
|
D | Document.h | 1050 void enqueuePopstateEvent(PassRefPtr<SerializedScriptValue> stateObject);
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebHistoryItem.cpp | 226 WebSerializedScriptValue WebHistoryItem::stateObject() const in stateObject() function in WebKit::WebHistoryItem 228 return WebSerializedScriptValue(m_private->stateObject()); in stateObject()
|
D | FrameLoaderClientImpl.cpp | 606 bool isHashChange = !currentItem || !currentItem->stateObject(); in dispatchDidNavigateWithinPage()
|
/external/webkit/Source/WebCore/history/ |
D | CachedFrame.cpp | 116 …ument->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject()… in restore()
|
D | HistoryItem.h | 146 SerializedScriptValue* stateObject() const { return m_stateObject.get(); } in stateObject() function
|
D | HistoryItem.cpp | 556 if (stateObject() || otherItem->stateObject()) in shouldDoSameDocumentNavigationTo()
|
/external/webkit/Source/WebCore/loader/ |
D | HistoryController.cpp | 788 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()
|
D | FrameLoader.cpp | 1167 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()
|
D | FrameLoader.h | 416 void loadInSameDocument(const KURL&, SerializedScriptValue* stateObject, bool isNewNavigation);
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebHistoryItem.h | 111 WEBKIT_API WebSerializedScriptValue stateObject() const;
|
/external/chromium/webkit/glue/ |
D | glue_serialize.cc | 324 bool has_state_object = !item.stateObject().isNull(); in WriteHistoryItem() 327 WriteString(item.stateObject().toString(), obj); in WriteHistoryItem()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 25642 (WebCore::HistoryItem::stateObject):
|