HomeSort by relevance Sort by last modified time
    Searched refs:stateObject (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/dom/
PopStateEvent.cpp 34 PopStateEvent::PopStateEvent(PassRefPtr<SerializedScriptValue> stateObject)
36 , m_stateObject(stateObject)
44 void PopStateEvent::initPopStateEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> stateObject)
51 m_stateObject = stateObject;
PopStateEvent.h 41 static PassRefPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue> stateObject)
43 return adoptRef(new PopStateEvent(stateObject));
Document.cpp     [all...]
Document.h     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebHistoryItem.cpp 226 WebSerializedScriptValue WebHistoryItem::stateObject() const
228 return WebSerializedScriptValue(m_private->stateObject());
FrameLoaderClientImpl.cpp 606 bool isHashChange = !currentItem || !currentItem->stateObject();
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebHistoryItem.h 111 WEBKIT_API WebSerializedScriptValue stateObject() const;
  /external/webkit/Source/WebCore/history/
CachedFrame.cpp 116 m_document->enqueuePopstateEvent(historyItem && historyItem->stateObject() ? historyItem->stateObject() : SerializedScriptValue::nullValue());
HistoryItem.h 146 SerializedScriptValue* stateObject() const { return m_stateObject.get(); }
HistoryItem.cpp 556 if (stateObject() || otherItem->stateObject())
  /external/webkit/Source/WebCore/loader/
HistoryController.cpp 788 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString)
    [all...]
FrameLoader.h 416 void loadInSameDocument(const KURL&, SerializedScriptValue* stateObject, bool isNewNavigation);
FrameLoader.cpp     [all...]
  /external/chromium/webkit/glue/
glue_serialize.cc 56 // 7: Adds support for stateObject
324 bool has_state_object = !item.stateObject().isNull();
327 WriteString(item.stateObject().toString(), obj);

Completed in 3916 milliseconds