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

1 2

  /external/webkit/WebKit/mac/Misc/
WebIconDatabasePrivate.h 29 #import <WebKit/WebIconDatabase.h>
32 // either inside WebIconDatabase.mm, or to WebIconDatabaseInternal.h.
43 @interface WebIconDatabase (WebPendingPublic)
68 @interface WebIconDatabase (WebPrivate)
WebIconDatabaseDelegate.h 31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
WebIconDatabaseInternal.h 43 @interface WebIconDatabase (WebInternal)
WebIconDatabase.h 48 @class WebIconDatabase
64 @interface WebIconDatabase : NSObject {
76 + (WebIconDatabase *)sharedIconDatabase;
WebIconDatabase.mm 76 @interface WebIconDatabase (WebReallyInternal)
88 @implementation WebIconDatabase
90 + (WebIconDatabase *)sharedIconDatabase
92 static WebIconDatabase *database = nil;
94 database = [[WebIconDatabase alloc] init];
165 return [_private->delegate webIconDatabase:self defaultIconForURL:URL withSize:size];
206 _private->delegateImplementsDefaultIconForURL = [delegate respondsToSelector:@selector(webIconDatabase:defaultIconForURL:withSize:)];
217 @implementation WebIconDatabase (WebPendingPublic)
248 @implementation WebIconDatabase (WebPrivate)
257 @implementation WebIconDatabase (WebInternal
    [all...]
  /external/webkit/WebKit/win/
WebIconDatabase.cpp 28 #include "WebIconDatabase.h"
48 // WebIconDatabase ----------------------------------------------------------------
50 WebIconDatabase* WebIconDatabase::m_sharedWebIconDatabase = 0;
52 WebIconDatabase::WebIconDatabase()
57 gClassNameCount.add("WebIconDatabase");
60 WebIconDatabase::~WebIconDatabase()
63 gClassNameCount.remove("WebIconDatabase");
    [all...]
WebIconDatabase.h 51 class WebIconDatabase : public IWebIconDatabase, public WebCore::IconDatabaseClient
54 static WebIconDatabase* createInstance();
55 static WebIconDatabase* sharedWebIconDatabase();
57 WebIconDatabase();
58 ~WebIconDatabase();
114 static WebIconDatabase* m_sharedWebIconDatabase;
ForEachCoClass.h 49 macro(WebIconDatabase) \
  /external/webkit/WebKit/android/jni/
WebIconDatabase.h 48 class WebIconDatabase : public WebCore::IconDatabaseClient {
50 WebIconDatabase() : mDeliveryRequested(false) {}
WebIconDatabase.cpp 29 #include "WebIconDatabase.h"
64 static WebIconDatabase* gIconDatabaseClient = new WebIconDatabase();
67 void WebIconDatabase::dispatchDidAddIconForPageURL(const WebCore::String& pageURL)
79 void WebIconDatabase::RegisterForIconNotification(WebIconDatabaseClient* client)
81 WebIconDatabase* db = gIconDatabaseClient;
91 void WebIconDatabase::UnregisterForIconNotification(WebIconDatabaseClient* client)
93 WebIconDatabase* db = gIconDatabaseClient;
103 void WebIconDatabase::DeliverNotifications(void* v)
106 ((WebIconDatabase*)v)->deliverNotifications()
    [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebIconDatabaseClient.mm 47 [[WebIconDatabase sharedIconDatabase] _sendDidRemoveAllIconsNotification];
56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebIconDatabaseTest.java 29 import android.webkit.WebIconDatabase;
34 @TestTargetClass(android.webkit.WebIconDatabase.class)
84 final WebIconDatabase webIconDatabase = WebIconDatabase.getInstance();
90 webIconDatabase.open(mFilePath);
102 webIconDatabase.close();
112 WebIconDatabase webIconDatabase1 = WebIconDatabase.getInstance();
113 WebIconDatabase webIconDatabase2 = WebIconDatabase.getInstance()
    [all...]
WebChromeClientTest.java 31 import android.webkit.WebIconDatabase;
41 private WebIconDatabase mIconDb;
126 WebIconDatabase mIconDb = WebIconDatabase.getInstance();
  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 33 * and WebView.getIconDatabase() will return a WebIconDatabase object. This
34 * WebIconDatabase object is a single instance and all methods operate on that
37 public final class WebIconDatabase {
38 private static final String LOGTAG = "WebIconDatabase";
39 // Global instance of a WebIconDatabase
40 private static WebIconDatabase sIconDatabase;
285 * Get the global instance of WebIconDatabase.
286 * @return A single instance of WebIconDatabase. It will be the same
290 public static WebIconDatabase getInstance() {
293 sIconDatabase = new WebIconDatabase();
    [all...]
  /packages/apps/Browser/src/com/android/browser/
CombinedBookmarkHistoryActivity.java 27 import android.webkit.WebIconDatabase;
28 import android.webkit.WebIconDatabase.IconListener;
133 WebIconDatabase.getInstance();
Bookmarks.java 28 import android.webkit.WebIconDatabase;
136 WebIconDatabase.getInstance().retainIconForPageUrl(url);
171 WebIconDatabase.getInstance().releaseIconForPageUrl(url);
BrowserBookmarksAdapter.java 38 import android.webkit.WebIconDatabase;
196 WebIconDatabase.getInstance().releaseIconForPageUrl(url);
BrowserSettings.java 41 import android.webkit.WebIconDatabase;
527 WebIconDatabase.getInstance().removeAllIcons();
BrowserHistoryPage.java 42 import android.webkit.WebIconDatabase.IconListener;
59 // Implementation of WebIconDatabase.IconListener
  /frameworks/base/core/java/android/provider/
Browser.java 28 import android.webkit.WebIconDatabase;
441 final WebIconDatabase iconDb = WebIconDatabase.getInstance();
588 WebIconDatabase.IconListener listener) {
589 WebIconDatabase.getInstance()
  /external/webkit/WebKit/
Android.mk 54 android/jni/WebIconDatabase.cpp \
  /external/webkit/WebKit/win/Interfaces/
WebKit.idl 168 coclass WebIconDatabase {
  /external/webkit/WebKitTools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 292 static WebIconDatabase* sharedWebIconDatabase = NULL;
296 sharedWebIconDatabase = [WebIconDatabase sharedIconDatabase];
  /cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java 32 import android.webkit.WebIconDatabase;
542 notes = "test requestAllIcons(ContentResolver, String, WebIconDatabase.IconListener).",
545 android.webkit.WebIconDatabase.IconListener.class}
    [all...]
  /external/webkit/WebKit/android/WebCoreSupport/
FrameLoaderClientAndroid.cpp 72 #include "WebIconDatabase.h"
    [all...]

Completed in 823 milliseconds

1 2