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

1 2 3

  /frameworks/base/core/java/android/webkit/
WebBackForwardListClient.java 29 * @param item The newly created WebHistoryItem
31 public void onNewHistoryItem(WebHistoryItem item) { }
36 * @param item A WebHistoryItem
39 public void onIndexChanged(WebHistoryItem item, int index) { }
WebHistoryItem.java 23 * of a WebView. Each WebHistoryItem is a snapshot of the requested history
27 public class WebHistoryItem implements Cloneable {
51 private WebHistoryItem() {
52 synchronized (WebHistoryItem.class) {
58 * Construct a new WebHistoryItem with initial flattened data.
61 /*package*/ WebHistoryItem(byte[] data) {
64 synchronized (WebHistoryItem.class) {
70 * Construct a clone of a WebHistoryItem from the given item.
73 private WebHistoryItem(WebHistoryItem item)
    [all...]
WebBackForwardList.java 31 private ArrayList<WebHistoryItem> mArray;
42 mArray = new ArrayList<WebHistoryItem>();
51 public synchronized WebHistoryItem getCurrentItem() {
69 public synchronized WebHistoryItem getItemAtIndex(int index) {
107 /*package*/ synchronized void addHistoryItem(WebHistoryItem item) {
117 final WebHistoryItem h = mArray.remove(i);
149 final WebHistoryItem h = mArray.remove(index);
169 l.mArray = new ArrayList<WebHistoryItem>(size);
171 // Add a copy of each WebHistoryItem
  /external/webkit/WebKit/android/jni/
WebHistory.h 50 class WebHistoryItem : public WebCore::AndroidWebHistoryBridge {
52 WebHistoryItem(WebHistoryItem* parent)
56 WebHistoryItem(JNIEnv*, jobject, WebCore::HistoryItem*);
57 ~WebHistoryItem();
59 void setParent(WebHistoryItem* parent) { m_parent = parent; }
60 WebHistoryItem* parent() const { return m_parent.get(); }
62 RefPtr<WebHistoryItem> m_parent;
WebHistory.cpp 170 RefPtr<WebHistoryItem> bridge = new WebHistoryItem(env, obj, newItem.get());
220 WebHistoryItem::WebHistoryItem(JNIEnv* env, jobject obj,
226 WebHistoryItem::~WebHistoryItem() {
235 void WebHistoryItem::updateHistoryItem(WebCore::HistoryItem* item) {
239 WebHistoryItem* webItem = this;
240 // Now we need to update the top-most WebHistoryItem based on the top-most
245 // if the parent only has one ref, it is from this WebHistoryItem
    [all...]
  /external/webkit/WebKit/mac/History/
WebBackForwardList.h 37 @class WebHistoryItem;
63 - (void)addItem:(WebHistoryItem *)item;
82 - (void)goToItem:(WebHistoryItem *)item;
89 - (WebHistoryItem *)backItem;
96 - (WebHistoryItem *)currentItem;
103 - (WebHistoryItem *)forwardItem;
154 - (BOOL)containsItem:(WebHistoryItem *)item;
162 - (WebHistoryItem *)itemAtIndex:(int)index;
WebBackForwardListPrivate.h 40 - (void)removeItem:(WebHistoryItem *)item;
WebHistoryItemPrivate.h 29 #import <WebKit/WebHistoryItem.h>
31 @interface WebHistoryItem (WebPrivate)
50 - (WebHistoryItem *)targetItem;
WebHistoryItemInternal.h 37 WebCore::HistoryItem* core(WebHistoryItem *item);
38 WebHistoryItem *kit(WebCore::HistoryItem* item);
42 @interface WebHistoryItem (WebInternal)
44 + (WebHistoryItem *)entryWithURL:(NSURL *)URL;
52 - (void)_mergeAutoCompleteHints:(WebHistoryItem *)otherItem;
WebHistoryPrivate.h 42 - (WebHistoryItem *)_itemForURLString:(NSString *)URLString;
WebHistory.h 33 @class WebHistoryItem;
123 @discussion Get an array of WebHistoryItem that were last visited on the day represented by the
136 - (WebHistoryItem *)itemForURL:(NSURL *)URL;
WebHistoryItem.h 43 @class WebHistoryItem
49 @interface WebHistoryItem : NSObject <NSCopying>
60 @abstract Initialize a new WebHistoryItem
WebBackForwardList.mm 148 - (void)addItem:(WebHistoryItem *)entry
158 - (void)removeItem:(WebHistoryItem *)item
163 - (BOOL)containsItem:(WebHistoryItem *)item
178 - (void)goToItem:(WebHistoryItem *)item
183 - (WebHistoryItem *)backItem
188 - (WebHistoryItem *)currentItem
193 - (WebHistoryItem *)forwardItem
312 - (WebHistoryItem *)itemAtIndex:(int)index
WebHistoryItem.mm 57 // Private keys used in the WebHistoryItem's dictionary representation.
76 typedef HashMap<HistoryItem*, WebHistoryItem*> HistoryItemMap;
93 @implementation WebHistoryItem
116 if (WebCoreObjCScheduleDeallocateOnMainThread([WebHistoryItem class], self))
144 WebHistoryItem *copy = (WebHistoryItem *)NSCopyObject(self, 0, zone);
208 if (![anObject isMemberOfClass:[WebHistoryItem class]]) {
212 return core(_private)->urlString() == core(((WebHistoryItem*)anObject)->_private)->urlString();
236 WebHistoryItem *child = kit(children[i].get());
254 @implementation WebHistoryItem (WebInternal
    [all...]
WebHistory.mm 82 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCount;
84 - (BOOL)addItem:(WebHistoryItem *)entry discardDuplicate:(BOOL)discardDuplicate;
86 - (BOOL)removeItem:(WebHistoryItem *)entry;
93 - (WebHistoryItem *)itemForURL:(NSURL *)URL;
94 - (WebHistoryItem *)itemForURLString:(NSString *)URLString;
190 - (void)insertItem:(WebHistoryItem *)entry forDateKey:(WebHistoryDateKey)dateKey
226 - (BOOL)removeItemFromDateCaches:(WebHistoryItem *)entry
251 WebHistoryItem *entry = [_entriesByURL objectForKey:URLString];
270 - (void)addItemToDateCaches:(WebHistoryItem *)entry
287 - (WebHistoryItem *)visitedURL:(NSURL *)url withTitle:(NSString *)title increaseVisitCount:(BOOL)increaseVisitCoun
    [all...]
  /external/webkit/WebKit/chromium/src/
WebHistoryItem.cpp 32 #include "WebHistoryItem.h"
50 void WebHistoryItem::initialize()
55 void WebHistoryItem::reset()
60 void WebHistoryItem::assign(const WebHistoryItem& other)
68 WebString WebHistoryItem::urlString() const
74 void WebHistoryItem::setURLString(const WebString& url)
80 WebString WebHistoryItem::originalURLString() const
86 void WebHistoryItem::setOriginalURLString(const WebString& originalURLString)
92 WebString WebHistoryItem::referrer() cons
    [all...]
  /external/webkit/WebKit/chromium/public/
WebHistoryItem.h 50 // WebHistoryItem is a node in a tree.
52 // Copying a WebHistoryItem is cheap.
54 class WebHistoryItem {
56 ~WebHistoryItem() { reset(); }
58 WebHistoryItem() : m_private(0) { }
59 WebHistoryItem(const WebHistoryItem& h) : m_private(0) { assign(h); }
60 WebHistoryItem& operator=(const WebHistoryItem& h)
68 WEBKIT_API void assign(const WebHistoryItem&)
    [all...]
WebFrame.h 54 class WebHistoryItem;
251 virtual void loadHistoryItem(const WebHistoryItem&) = 0;
285 // Returns the previous history item. Check WebHistoryItem::isNull()
287 virtual WebHistoryItem previousHistoryItem() const = 0;
289 // Returns the current history item. Check WebHistoryItem::isNull()
291 virtual WebHistoryItem currentHistoryItem() const = 0;
  /external/webkit/WebKit/mac/WebView/
WebPolicyDelegatePrivate.h 31 @class WebHistoryItem;
51 - (BOOL)webView:(WebView *)webView shouldGoToHistoryItem:(WebHistoryItem *)item;
  /external/webkit/WebKit/win/
WebHistoryItem.cpp 28 #include "WebHistoryItem.h"
47 // WebHistoryItem ----------------------------------------------------------------
49 static HashMap<HistoryItem*, WebHistoryItem*>& historyItemWrappers()
51 static HashMap<HistoryItem*, WebHistoryItem*> staticHistoryItemWrappers;
55 WebHistoryItem::WebHistoryItem(PassRefPtr<HistoryItem> historyItem)
63 gClassNameCount.add("WebHistoryItem");
66 WebHistoryItem::~WebHistoryItem()
72 gClassNameCount.remove("WebHistoryItem");
    [all...]
WebHistoryItem.h 42 class WebHistoryItem : public IWebHistoryItem, IWebHistoryItemPrivate
45 static WebHistoryItem* createInstance();
46 static WebHistoryItem* createInstance(PassRefPtr<WebCore::HistoryItem>);
48 WebHistoryItem(PassRefPtr<WebCore::HistoryItem>);
49 ~WebHistoryItem();
109 // WebHistoryItem
WebBackForwardList.cpp 121 COMPtr<WebHistoryItem> webHistoryItem;
123 if (!item || FAILED(item->QueryInterface(&webHistoryItem)))
126 m_backForwardList->addItem(webHistoryItem->historyItem());
145 COMPtr<WebHistoryItem> webHistoryItem;
147 if (!item || FAILED(item->QueryInterface(&webHistoryItem)))
150 m_backForwardList->goToItem(webHistoryItem->historyItem());
165 *item = WebHistoryItem::createInstance(historyItem);
180 *item = WebHistoryItem::createInstance(historyItem)
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebHistoryItemTest.java 30 import android.webkit.WebHistoryItem;
34 @TestTargetClass(android.webkit.WebHistoryItem.class)
85 WebHistoryItem item = list.getCurrentItem();
132 WebHistoryItem item = list.getCurrentItem();
142 notes = "clone() is protected and WebHistoryItem cannot be subclassed",
WebBackForwardListTest.java 27 import android.webkit.WebHistoryItem;
106 WebHistoryItem item = list.getItemAtIndex(i);
  /external/webkit/WebKit/mac/Misc/
WebKit.h 41 #import <WebKit/WebHistoryItem.h>

Completed in 45 milliseconds

1 2 3