Home
last modified time | relevance | path

Searched refs:historyItem (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DRevisionHistoryView.js98 …var historyItem = new WebInspector.RevisionHistoryTreeElement(revision, uiSourceCode.history[i - 1…
99 uiSourceCodeItem.appendChild(historyItem);
134 …var historyItem = new WebInspector.RevisionHistoryTreeElement(uiSourceCode.history[historyLength -…
137 uiSourceCodeItem.insertChild(historyItem, 0);
/external/chromium_org/third_party/WebKit/Source/core/frame/
DHistory.cpp72 if (HistoryItem* historyItem = m_frame->loader().currentItem()) in stateInternal() local
73 return historyItem->stateObject(); in stateInternal()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DUISourceCode.js452 function filterOutStale(historyItem) argument
457 return historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId;
929 var historyItem = historyItems[i];
930 if (historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId) {
931 filteredHistoryItems.push(historyItem);
934 delete window.localStorage[historyItem.key];
/external/chromium_org/third_party/WebKit/Source/web/
DContextMenuClientImpl.cpp305 RefPtr<HistoryItem> historyItem = selectedFrame->loader().currentItem(); in showContextMenu() local
306 if (historyItem) in showContextMenu()
307 data.frameHistoryItem = WebHistoryItem(historyItem); in showContextMenu()
DWebLocalFrameImpl.cpp863 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item); in loadHistoryItem() local
864 ASSERT(historyItem); in loadHistoryItem()
865 …frame()->loader().loadHistoryItem(historyItem.get(), static_cast<HistoryLoadType>(loadType), stati… in loadHistoryItem()