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

  /external/chromium_org/third_party/WebKit/Source/core/page/
History.cpp 74 return historyItem->stateObject();
  /external/chromium_org/third_party/WebKit/Source/core/history/
HistoryItem.h 103 SerializedScriptValue* stateObject() const { return m_stateObject.get(); }
HistoryItem.cpp 372 if (stateObject() || otherItem->stateObject())
  /external/chromium_org/third_party/WebKit/public/web/
WebHistoryItem.h 114 WEBKIT_EXPORT WebSerializedScriptValue stateObject() const;
  /external/chromium_org/content/public/renderer/
history_item_serialization.cc 91 if (!item.stateObject().isNull())
92 state->state_object = item.stateObject().toString();
  /external/chromium_org/third_party/WebKit/Source/web/
WebHistoryItem.cpp 262 WebSerializedScriptValue WebHistoryItem::stateObject() const
264 return WebSerializedScriptValue(m_private->stateObject());
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.cpp 691 void HistoryController::pushState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString)
705 m_currentItem->setStateObject(stateObject);
711 void HistoryController::replaceState(PassRefPtr<SerializedScriptValue> stateObject, const String& title, const String& urlString)
719 m_currentItem->setStateObject(stateObject);
FrameLoader.cpp 481 m_frame->document()->statePopped(history()->currentItem()->stateObject());
748 void FrameLoader::loadInSameDocument(const KURL& url, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation)
751 ASSERT(!stateObject || (stateObject && !isNewNavigation));
762 UpdateBackForwardListPolicy updateBackForwardList = isNewNavigation && !shouldTreatURLAsSameAsCurrent(url) && !stateObject ? UpdateBackForwardList : DoNotUpdateBackForwardList;
776 m_frame->document()->statePopped(stateObject ? stateObject : SerializedScriptValue::nullValue());
    [all...]
FrameLoader.h 293 void loadInSameDocument(const KURL&, PassRefPtr<SerializedScriptValue> stateObject, bool isNewNavigation);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
history.js 289 _joinParameters: function(stateObject)
292 for (var key in stateObject) {
293 var value = stateObject[key];
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
Document.h     [all...]

Completed in 750 milliseconds