HomeSort by relevance Sort by last modified time
    Searched refs:HistoryItem (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/history/
BackForwardClient.h 35 class HistoryItem;
41 virtual void addItem(PassRefPtr<HistoryItem>) = 0;
43 virtual void goToItem(HistoryItem*) = 0;
45 virtual HistoryItem* itemAtIndex(int) = 0;
BackForwardController.h 36 class HistoryItem;
54 void addItem(PassRefPtr<HistoryItem>);
55 void setCurrentItem(HistoryItem*);
61 HistoryItem* itemAtIndex(int);
67 HistoryItem* backItem() { return itemAtIndex(-1); }
68 HistoryItem* currentItem() { return itemAtIndex(0); }
69 HistoryItem* forwardItem() { return itemAtIndex(1); }
HistoryItem.cpp 27 #include "core/history/HistoryItem.h"
46 HistoryItem::HistoryItem()
56 HistoryItem::HistoryItem(const String& urlString)
68 HistoryItem::~HistoryItem()
72 inline HistoryItem::HistoryItem(const HistoryItem& item
    [all...]
HistoryItem.h 39 class HistoryItem;
44 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
46 class HistoryItem : public RefCounted<HistoryItem> {
48 static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); }
49 static PassRefPtr<HistoryItem> create(const String& urlString)
51 return adoptRef(new HistoryItem(urlString));
54 ~HistoryItem();
56 PassRefPtr<HistoryItem> copy() const
    [all...]
BackForwardController.cpp 30 #include "core/history/HistoryItem.h"
56 HistoryItem* item = itemAtIndex(distance);
75 HistoryItem* item = backItem();
86 HistoryItem* item = forwardItem();
95 void BackForwardController::addItem(PassRefPtr<HistoryItem> item)
100 void BackForwardController::setCurrentItem(HistoryItem* item)
120 HistoryItem* BackForwardController::itemAtIndex(int i)
  /external/chromium_org/third_party/WebKit/Source/core/loader/
HistoryController.h 33 #include "core/history/HistoryItem.h"
51 void saveScrollPositionAndViewStateToItem(HistoryItem*);
64 HistoryItem* currentItem() const { return m_currentItem.get(); }
65 void setCurrentItem(HistoryItem*);
69 HistoryItem* previousItem() const { return m_previousItem.get(); }
71 HistoryItem* provisionalItem() const { return m_provisionalItem.get(); }
72 void setProvisionalItem(HistoryItem*);
81 bool shouldStopLoadingForHistoryItem(HistoryItem*) const;
82 void goToItem(HistoryItem*);
84 void initializeItem(HistoryItem*);
    [all...]
HistoryController.cpp 36 #include "core/history/HistoryItem.h"
61 void HistoryController::saveScrollPositionAndViewStateToItem(HistoryItem* item)
153 static inline bool isAssociatedToRequestedHistoryItem(const HistoryItem* current, Frame* frame, const HistoryItem* requested)
173 HistoryItem* itemToRestore = 0;
195 bool HistoryController::shouldStopLoadingForHistoryItem(HistoryItem* targetItem) const
209 void HistoryController::goToItem(HistoryItem* targetItem)
230 RefPtr<HistoryItem> currentItem = page->backForward()->currentItem();
441 void HistoryController::setCurrentItem(HistoryItem* item)
463 void HistoryController::setProvisionalItem(HistoryItem* item
    [all...]
FrameLoader.h 96 void loadHistoryItem(HistoryItem*); // The entry point for all back/forward loads
102 HistoryItem* requestedHistoryItem() const { return m_requestedHistoryItem.get(); }
257 void loadSameDocumentItem(HistoryItem*);
258 void loadDifferentDocumentItem(HistoryItem*);
355 RefPtr<HistoryItem> m_requestedHistoryItem;
  /external/chromium_org/third_party/WebKit/Source/web/
BackForwardClientImpl.h 35 #include "core/history/HistoryItem.h"
49 virtual void addItem(PassRefPtr<WebCore::HistoryItem>);
50 virtual void goToItem(WebCore::HistoryItem*);
51 virtual WebCore::HistoryItem* itemAtIndex(int index);
59 RefPtr<WebCore::HistoryItem> m_currentItem;
63 RefPtr<WebCore::HistoryItem> m_pendingHistoryItem;
BackForwardClientImpl.cpp 36 #include "core/history/HistoryItem.h"
54 void BackForwardClientImpl::addItem(PassRefPtr<HistoryItem> item)
58 // If WebCore adds a new HistoryItem, it means this is a new navigation (ie,
66 void BackForwardClientImpl::goToItem(HistoryItem* item)
74 HistoryItem* BackForwardClientImpl::itemAtIndex(int index)
88 // to navigate to this HistoryItem.
95 m_pendingHistoryItem = HistoryItem::create(urlString);
WebHistoryItem.cpp 36 #include "core/history/HistoryItem.h"
51 void addReferencedFilePaths(HistoryItem* item, HashSet<String>& results)
75 m_private = HistoryItem::create();
324 WebHistoryItem::WebHistoryItem(const PassRefPtr<HistoryItem>& item)
329 WebHistoryItem& WebHistoryItem::operator=(const PassRefPtr<HistoryItem>& item)
335 WebHistoryItem::operator PassRefPtr<HistoryItem>() const
  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.h 63 struct HistoryItem {
65 HistoryItem();
67 HistoryItem(const HistoryItem& copy);
68 ~HistoryItem();
86 // quickly), the NSMenu can release the item before the HistoryItem has
98 // If the HistoryItem is a window, this will be the vector of tabs. Note
102 std::vector<HistoryItem*> tabs;
106 void operator=(const HistoryItem&);
136 // corresponding HistoryItem
    [all...]
history_menu_cocoa_controller.h 29 - (void)openURLForItem:(const HistoryMenuBridge::HistoryItem*)node;
  /external/chromium_org/chrome/browser/ui/cocoa/
history_menu_bridge.h 66 struct HistoryItem {
68 HistoryItem();
70 HistoryItem(const HistoryItem& copy);
71 ~HistoryItem();
89 // quickly), the NSMenu can release the item before the HistoryItem has
101 // If the HistoryItem is a window, this will be the vector of tabs. Note
105 std::vector<HistoryItem*> tabs;
109 void operator=(const HistoryItem&);
143 // corresponding HistoryItem
    [all...]
history_menu_cocoa_controller.h 28 - (void)openURLForItem:(const HistoryMenuBridge::HistoryItem*)node;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/history/
HistoryManager.java 27 private Vector<HistoryItem> mHistoryItems = new Vector<HistoryItem>();
44 public HistoryItem getItem(int position) {
55 private void add(HistoryItem item) {
118 public HistoryItem getLast() {
125 public HistoryItem getCurrent() {
129 public void addHistoryItem(HistoryItem preset) {
134 private void insert(HistoryItem preset, int position) {
137 Vector<HistoryItem> oldItems = new Vector<HistoryItem>();
    [all...]
HistoryItem.java 24 public class HistoryItem {
25 private static final String LOGTAG = "HistoryItem";
30 public HistoryItem(ImagePreset preset, FilterRepresentation representation) {
  /external/chromium_org/chrome/browser/ui/gtk/
global_history_menu.h 43 class HistoryItem;
47 typedef std::map<GtkWidget*, HistoryItem*> MenuItemToHistoryMap;
55 // Returns the currently existing HistoryItem associated with
57 HistoryItem* HistoryItemForMenuItem(GtkWidget* menu_item);
59 // Returns whether there's a valid HistoryItem representation of |entry|.
62 // Creates a HistoryItem from the data in |entry|.
63 HistoryItem* HistoryItemForTab(const TabRestoreService::Tab& entry);
66 GtkWidget* AddHistoryItemToMenu(HistoryItem* item,
global_history_menu.cc 63 class GlobalHistoryMenu::HistoryItem {
65 HistoryItem()
85 // If the HistoryItem is a window, this will be the vector of tabs. Note
89 std::vector<HistoryItem*> tabs;
92 DISALLOW_COPY_AND_ASSIGN(HistoryItem);
163 HistoryItem* item = new HistoryItem();
174 GlobalHistoryMenu::HistoryItem* GlobalHistoryMenu::HistoryItemForMenuItem(
180 GlobalHistoryMenu::HistoryItem* GlobalHistoryMenu::HistoryItemForTab(
184 HistoryItem* item = new HistoryItem()
    [all...]
  /packages/apps/Browser/src/com/android/browser/
HistoryItem.java 29 /* package */ class HistoryItem extends BookmarkItem
34 * Create a new HistoryItem.
35 * @param context Context for this HistoryItem.
37 /* package */ HistoryItem(Context context) {
41 /* package */ HistoryItem(Context context, boolean showStar) {
53 /* package */ void copyTo(HistoryItem item) {
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...]
  /external/chromium_org/third_party/WebKit/public/web/
WebHistoryItem.h 37 namespace WebCore { class HistoryItem; }
130 WebHistoryItem(const WTF::PassRefPtr<WebCore::HistoryItem>&);
131 WebHistoryItem& operator=(const WTF::PassRefPtr<WebCore::HistoryItem>&);
132 operator WTF::PassRefPtr<WebCore::HistoryItem>() const;
137 WebPrivatePtr<WebCore::HistoryItem> m_private;
  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.h 62 struct HistoryItem;
88 // Creates a HistoryItem from the data in |entry|.
89 HistoryItem* HistoryItemForTab(const TabRestoreService::Tab& entry);
92 void AddHistoryItemToMenu(HistoryItem* item,
114 // Deleter function for HistoryItem implementation detail.
global_menu_bar_x11.cc 284 struct GlobalMenuBarX11::HistoryItem {
285 HistoryItem() : session_id(0) {}
299 // If the HistoryItem is a window, this will be the vector of tabs. Note
303 std::vector<HistoryItem*> tabs;
306 DISALLOW_COPY_AND_ASSIGN(HistoryItem);
504 GlobalMenuBarX11::HistoryItem* GlobalMenuBarX11::HistoryItemForTab(
508 HistoryItem* item = new HistoryItem();
516 void GlobalMenuBarX11::AddHistoryItemToMenu(HistoryItem* item,
557 HistoryItem* item = new HistoryItem()
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 30 import android.os.BatteryStats.HistoryItem;
361 final HistoryItem rec = new HistoryItem();
364 if (rec.cmd == HistoryItem.CMD_UPDATE) {
379 mHaveGps = (aggrStates&HistoryItem.STATE_GPS_ON_FLAG) != 0;
380 mHaveWifi = (aggrStates&HistoryItem.STATE_WIFI_RUNNING_FLAG) != 0;
524 final HistoryItem rec = new HistoryItem();
526 if (rec.cmd == BatteryStats.HistoryItem.CMD_UPDATE) {
563 (rec.states&HistoryItem.STATE_BATTERY_PLUGGED_FLAG) != 0
    [all...]

Completed in 6524 milliseconds

1 2 3