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/
DRevisionHistoryView.js99 …var historyItem = new WebInspector.RevisionHistoryTreeElement(revision, uiSourceCode.history[i - 1…
100 uiSourceCodeItem.appendChild(historyItem);
135 …var historyItem = new WebInspector.RevisionHistoryTreeElement(uiSourceCode.history[historyLength -…
138 uiSourceCodeItem.insertChild(historyItem, 0);
DUISourceCode.js422 function filterOutStale(historyItem) argument
427 return historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId;
985 var historyItem = historyItems[i];
986 if (historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId) {
987 filteredHistoryItems.push(historyItem);
990 delete window.localStorage[historyItem.key];
/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/web/
DContextMenuClientImpl.cpp293 RefPtr<HistoryItem> historyItem = selectedFrame->loader().currentItem(); in showContextMenu() local
294 if (historyItem) in showContextMenu()
295 data.frameHistoryItem = WebHistoryItem(historyItem); in showContextMenu()
DWebFrameImpl.cpp942 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item); in loadHistoryItem() local
943 ASSERT(historyItem); in loadHistoryItem()
944 frame()->page()->historyController().goToItem(historyItem.get()); in loadHistoryItem()