HomeSort by relevance Sort by last modified time
    Searched full:webhistory (Results 1 - 25 of 48) sorted by null

1 2

  /external/webkit/Source/WebKit/mac/History/
WebHistory.h 56 @class WebHistory
57 @discussion WebHistory is used to track pages that have been loaded
60 @interface WebHistory : NSObject {
67 @abstract Returns a shared WebHistory instance initialized with the default history file.
68 @result A WebHistory object.
70 + (WebHistory *)optionalSharedHistory;
74 @param history The history to use for the global WebHistory.
76 + (void)setOptionalSharedHistory:(WebHistory *)history;
80 @param URL The URL to use to initialize the WebHistory.
82 @abstract The designated initializer for WebHistory
    [all...]
WebHistoryPrivate.h 29 #import <WebKit/WebHistory.h>
39 @interface WebHistory (WebPrivate)
46 @result Returns an array of all WebHistoryItems in WebHistory, in an undefined order.
WebHistoryItemPrivate.h 57 // in WebHistory. Use -[WebHistory setLastVisitedTimeInterval:forItem:] instead.
WebHistoryInternal.h 35 @interface WebHistory (WebInternal)
WebHistory.mm 53 static WebHistory *_sharedHistory = nil;
645 @implementation WebHistory
647 + (WebHistory *)optionalSharedHistory
652 + (void)setOptionalSharedHistory:(WebHistory *)history
656 // FIXME: Need to think about multiple instances of WebHistory per application
787 @implementation WebHistory (WebPrivate)
816 @implementation WebHistory (WebInternal)
WebHistoryItem.h 45 The WebBackForwardList and WebHistory classes both use WebHistoryItems to represent
WebHistoryItem.mm 563 // in WebHistory. Use -[WebHistory setLastVisitedTimeInterval:forItem:] instead.
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHistory.idl 55 @class WebHistory
56 @discussion WebHistory is used to track pages that have been loaded
70 @abstract Returns a shared WebHistory instance initialized with the default history file.
71 @result A WebHistory object.
72 + (WebHistory *)optionalSharedHistory;
78 @param history The history to use for the global WebHistory.
79 + (void)setOptionalSharedHistory:(WebHistory *)history;
85 @param URL The URL to use to initialize the WebHistory.
87 @abstract The designated initializer for WebHistory.
96 @param URL The URL to use to save the WebHistory
    [all...]
IWebHistoryItem.idl 34 The WebBackForwardList and WebHistory classes both use WebHistoryItems to represent
  /external/webkit/Source/WebKit/win/
WebHistory.cpp 28 #include "WebHistory.h"
58 WebHistoryWriter(const WebHistory::DateToEntriesMap&);
63 const WebHistory::DateToEntriesMap& m_entriesByDate;
64 Vector<WebHistory::DateKey> m_dateKeys;
67 WebHistoryWriter::WebHistoryWriter(const WebHistory::DateToEntriesMap& entriesByDate)
118 // WebHistory -----------------------------------------------------------------
120 WebHistory::WebHistory()
125 gClassNameCount.add("WebHistory");
132 WebHistory::~WebHistory(
    [all...]
WebHistory.h 45 class WebHistory : public IWebHistory, public IWebHistoryPrivate {
47 static WebHistory* createInstance();
49 WebHistory();
50 ~WebHistory();
121 // WebHistory
122 static WebHistory* sharedHistory();
ForEachCoClass.h 47 macro(WebHistory) \
ChangeLog-2009-06-16 88 * WebHistory.cpp:
89 (WebHistory::visitedURL): Changed
155 * WebHistory.cpp:
156 (WebHistory::visitedURL):
478 This ports the changes that were made to WebKit/mac's WebHistory
479 implementation in r25275 to WebKit/win. WebHistory now stores a
500 * WebHistory.cpp:
506 (WebHistory::WebHistory): Removed code to initialize
509 (WebHistory::removeAllItems): Clear out m_entriesByDate an
    [all...]
WebKitClassFactory.cpp 41 #include "WebHistory.h"
WebPreferenceKeysPrivate.h 96 // From WebHistory.h
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebFrameLoaderClient.h 41 class WebHistory;
136 WebHistory* webHistory() const;
WebFrameLoaderClient.cpp 43 #include "WebHistory.h"
552 WebHistory* history = WebHistory::sharedHistory();
565 WebHistory* history = WebHistory::sharedHistory();
696 COMPtr<WebHistory> history = webHistory();
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebHistory.h 43 class WebHistory {
WebCoreJniOnLoad.cpp 107 { "WebHistory", android::registerWebHistory },
WebHistory.cpp 26 #define LOG_TAG "webhistory"
29 #include "WebHistory.h"
281 void WebHistory::Flatten(JNIEnv* env, WTF::Vector<char>& vector, WebCore::HistoryItem* item)
357 WebHistory::Flatten(env, webItem->m_data, item);
389 void WebHistory::AddItem(const AutoJObject& list, WebCore::HistoryItem* item)
418 void WebHistory::RemoveItem(const AutoJObject& list, int index)
424 void WebHistory::UpdateHistoryIndex(const AutoJObject& list, int newIndex)
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebKit.h 40 #import <WebKit/WebHistory.h>
  /external/webkit/Source/WebKit/
Android.mk 72 android/jni/WebHistory.cpp \
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 59 #import <WebKit/WebHistory.h>
249 if (![WebHistory optionalSharedHistory]) {
250 WebHistory *history = [[WebHistory alloc] init];
251 [WebHistory setOptionalSharedHistory:history];
323 return [[[WebHistory optionalSharedHistory] allItems] count];
593 [WebHistory _removeAllVisitedLinks];
    [all...]
  /external/webkit/Source/WebKit/mac/
WebKit.order 64 +[WebHistory(WebPrivate) _setVisitedLinkTrackingEnabled:]
65 +[WebHistory(WebPrivate) _removeAllVisitedLinks]
    [all...]
  /external/webkit/Source/WebCore/history/
HistoryItem.h 177 // in GlobalHistory. The WebKit api for this is to use -[WebHistory setLastVisitedTimeInterval:forItem:] instead.

Completed in 784 milliseconds

1 2