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

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DHistory.cpp73 if (HistoryItem* historyItem = m_frame->loader()->history()->currentItem())
74 return historyItem->stateObject();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DRevisionHistoryView.js102 var historyItem = new WebInspector.RevisionHistoryTreeElement(revision, uiSourceCode.history[i - 1], i !== revisionCount - 1);
103 uiSourceCodeItem.appendChild(historyItem);
138 var historyItem = new WebInspector.RevisionHistoryTreeElement(uiSourceCode.history[historyLength - 1], uiSourceCode.history[historyLength - 2], false);
141 uiSourceCodeItem.insertChild(historyItem, 0);
H A DUISourceCode.js416 function filterOutStale(historyItem)
421 return historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId;
973 var historyItem = historyItems[i];
974 if (historyItem.loaderId === WebInspector.resourceTreeModel.mainFrame.loaderId) {
975 filteredHistoryItems.push(historyItem);
978 delete window.localStorage[historyItem.key];
/external/chromium_org/third_party/WebKit/Source/web/
H A DContextMenuClientImpl.cpp288 RefPtr<HistoryItem> historyItem = selectedFrame->loader()->history()->currentItem(); local
289 if (historyItem)
290 data.frameHistoryItem = WebHistoryItem(historyItem);
H A DWebFrameImpl.cpp936 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item); local
937 ASSERT(historyItem);
941 m_inSameDocumentHistoryLoad = currentItem && currentItem->shouldDoSameDocumentNavigationTo(historyItem.get());
942 frame()->page()->goToItem(historyItem.get());

Completed in 96 milliseconds