HomeSort by relevance Sort by last modified time
    Searched defs:HistoryItem (Results 1 - 6 of 6) sorted by null

  /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) {
  /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...]
  /external/webkit/Source/WebCore/history/
HistoryItem.cpp 27 #include "HistoryItem.h"
54 static void defaultNotifyHistoryItemChanged(HistoryItem*)
58 void (*notifyHistoryItemChanged)(HistoryItem*) = defaultNotifyHistoryItemChanged;
60 HistoryItem::HistoryItem()
74 HistoryItem::HistoryItem(const String& urlString, const String& title, double time)
92 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time)
111 HistoryItem::HistoryItem(const KURL& url, const String& target, const String& parent, const String& title
    [all...]
HistoryItem.h 56 class HistoryItem;
61 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
63 extern void (*notifyHistoryItemChanged)(HistoryItem*);
70 class HistoryItem : public RefCounted<HistoryItem> {
74 static PassRefPtr<HistoryItem> create() { return adoptRef(new HistoryItem); }
75 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, double lastVisited)
77 return adoptRef(new HistoryItem(urlString, title, lastVisited));
79 static PassRefPtr<HistoryItem> create(const String& urlString, const String& title, const String& alternateTitle, double lastVis (…)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebHistoryItem.cpp 35 #include "HistoryItem.h"
50 m_private = HistoryItem::create();
278 WebHistoryItem::WebHistoryItem(const PassRefPtr<HistoryItem>& item)
283 WebHistoryItem& WebHistoryItem::operator=(const PassRefPtr<HistoryItem>& item)
289 WebHistoryItem::operator PassRefPtr<HistoryItem>() const
  /frameworks/base/core/java/android/os/
BatteryStats.java 411 public final static class HistoryItem implements Parcelable {
412 static final String TAG = "HistoryItem";
415 public HistoryItem next;
474 public HistoryItem() {
477 public HistoryItem(long time, Parcel src) {
527 public void writeDelta(Parcel dest, HistoryItem last) {
668 public void setTo(HistoryItem o) {
680 public void setTo(long time, byte cmd, HistoryItem o) {
692 public boolean same(HistoryItem o) {
726 public abstract boolean getNextHistoryLocked(HistoryItem out)
    [all...]

Completed in 111 milliseconds