OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:historyItem
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/frame/
History.cpp
32
#include "core/history/
HistoryItem
.h"
72
if (
HistoryItem
*
historyItem
= m_frame->loader().currentItem())
73
return
historyItem
->stateObject();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RevisionHistoryView.js
99
var
historyItem
= new WebInspector.RevisionHistoryTreeElement(revision, uiSourceCode.history[i - 1], i !== revisionCount - 1);
100
uiSourceCodeItem.appendChild(
historyItem
);
135
var
historyItem
= new WebInspector.RevisionHistoryTreeElement(uiSourceCode.history[historyLength - 1], uiSourceCode.history[historyLength - 2], false);
138
uiSourceCodeItem.insertChild(
historyItem
, 0);
UISourceCode.js
422
function filterOutStale(
historyItem
)
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];
/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
53
#include "core/history/
HistoryItem
.h"
293
RefPtr<
HistoryItem
>
historyItem
= selectedFrame->loader().currentItem();
294
if (
historyItem
)
295
data.frameHistoryItem = WebHistoryItem(
historyItem
);
WebFrameImpl.cpp
136
#include "core/history/
HistoryItem
.h"
942
RefPtr<
HistoryItem
>
historyItem
= PassRefPtr<
HistoryItem
>(item);
943
ASSERT(
historyItem
);
944
frame()->page()->historyController().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 64 milliseconds