Searched defs:HistoryItem (Results 1 - 4 of 4) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/
H A Dhistory_menu_bridge.h63 struct HistoryItem { struct in class:HistoryMenuBridge
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/WebKit/chromium/src/
H A DWebHistoryItem.cpp35 #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
/external/webkit/Source/WebCore/history/
H A DHistoryItem.cpp27 #include "HistoryItem.h"
54 static void defaultNotifyHistoryItemChanged(HistoryItem*)
58 void (*notifyHistoryItemChanged)(HistoryItem*) = defaultNotifyHistoryItemChanged;
60 HistoryItem::HistoryItem() function in class:WebCore::HistoryItem
74 HistoryItem::HistoryItem(const String& urlString, const String& title, double time) function in class:WebCore::HistoryItem
92 HistoryItem::HistoryItem(const String& urlString, const String& title, const String& alternateTitle, double time) function in class:WebCore::HistoryItem
111 HistoryItem function in class:WebCore::HistoryItem
141 inline HistoryItem::HistoryItem(const HistoryItem& item) function in class:WebCore::HistoryItem
[all...]
H A DHistoryItem.h56 class HistoryItem;
61 typedef Vector<RefPtr<HistoryItem> > HistoryItemVector;
63 extern void (*notifyHistoryItemChanged)(HistoryItem*);
70 class HistoryItem : public RefCounted<HistoryItem> { class in namespace:WebCore
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> creat
[all...]

Completed in 773 milliseconds