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

  /external/chromium_org/third_party/WebKit/Source/core/page/
History.cpp 34 #include "core/history/HistoryItem.h"
73 if (HistoryItem* historyItem = m_frame->loader()->history()->currentItem())
74 return historyItem->stateObject();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RevisionHistoryView.js 102 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);
UISourceCode.js 416 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];
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 78 HistoryItem mContextHeader;
267 mCallback.openUrl(((HistoryItem) view).getUrl());
274 mCallback.openUrl(((HistoryItem) view).getUrl());
346 if (!(targetView instanceof HistoryItem)) {
349 HistoryItem historyItem = (HistoryItem) targetView;
358 mContextHeader = new HistoryItem(parent, false);
363 historyItem.copyTo(mContextHeader);
371 if (historyItem.isBookmark())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 38 import com.android.gallery3d.filtershow.history.HistoryItem;
263 HistoryItem historyItem = new HistoryItem(mPreset, change);
264 mHistory.addHistoryItem(historyItem);
272 HistoryItem historyItem = mHistory.getItem(position);
274 ImagePreset newPreset = new ImagePreset(historyItem.getImagePreset());
276 setPreset(newPreset, historyItem.getFilterRepresentation(), false);
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 52 #include "core/history/HistoryItem.h"
288 RefPtr<HistoryItem> historyItem = selectedFrame->loader()->history()->currentItem();
289 if (historyItem)
290 data.frameHistoryItem = WebHistoryItem(historyItem);
WebFrameImpl.cpp 132 #include "core/history/HistoryItem.h"
936 RefPtr<HistoryItem> historyItem = PassRefPtr<HistoryItem>(item);
937 ASSERT(historyItem);
940 RefPtr<HistoryItem> currentItem = frame()->loader()->history()->currentItem();
941 m_inSameDocumentHistoryLoad = currentItem && currentItem->shouldDoSameDocumentNavigationTo(historyItem.get());
942 frame()->page()->goToItem(historyItem.get());
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 103 import com.android.gallery3d.filtershow.history.HistoryItem;
    [all...]

Completed in 339 milliseconds