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

1 2

  /external/webkit/Source/WebKit2/UIProcess/
WebIconDatabaseClient.h 35 class WebIconDatabase;
40 void didChangeIconForPageURL(WebIconDatabase*, WebURL*);
41 void didRemoveAllIcons(WebIconDatabase*);
WebIconDatabase.cpp 27 #include "WebIconDatabase.h"
42 PassRefPtr<WebIconDatabase> WebIconDatabase::create(WebContext* context)
44 return adoptRef(new WebIconDatabase(context));
47 WebIconDatabase::~WebIconDatabase()
51 WebIconDatabase::WebIconDatabase(WebContext* context)
58 void WebIconDatabase::invalidate()
62 void WebIconDatabase::setDatabasePath(const String& path
    [all...]
WebIconDatabaseClient.cpp 34 void WebIconDatabaseClient::didChangeIconForPageURL(WebIconDatabase* iconDatabase, WebURL* url)
42 void WebIconDatabaseClient::didRemoveAllIcons(WebIconDatabase* iconDatabase)
WebIconDatabase.h 55 class WebIconDatabase : public APIObject, public WebCore::IconDatabaseClient {
59 static PassRefPtr<WebIconDatabase> create(WebContext*);
60 virtual ~WebIconDatabase();
99 WebIconDatabase(WebContext*);
WebContext.h 52 class WebIconDatabase;
150 WebIconDatabase* iconDatabase() const { return m_iconDatabase.get(); }
252 RefPtr<WebIconDatabase> m_iconDatabase;
  /external/webkit/Source/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 79 @interface WebIconDatabase (WebReallyInternal)
91 @implementation WebIconDatabase
99 + (WebIconDatabase *)sharedIconDatabase
101 static WebIconDatabase *database = nil;
103 database = [[WebIconDatabase alloc] init];
174 return [_private->delegate webIconDatabase:self defaultIconForURL:URL withSize:size];
215 _private->delegateImplementsDefaultIconForURL = [delegate respondsToSelector:@selector(webIconDatabase:defaultIconForURL:withSize:)];
226 @implementation WebIconDatabase (WebPendingPublic)
257 @implementation WebIconDatabase (WebPrivate)
266 @implementation WebIconDatabase (WebInternal
    [all...]
  /external/webkit/Source/WebKit/win/
WebIconDatabase.cpp 28 #include "WebIconDatabase.h"
47 // WebIconDatabase ----------------------------------------------------------------
49 WebIconDatabase* WebIconDatabase::m_sharedWebIconDatabase = 0;
51 WebIconDatabase::WebIconDatabase()
56 gClassNameCount.add("WebIconDatabase");
59 WebIconDatabase::~WebIconDatabase()
62 gClassNameCount.remove("WebIconDatabase");
    [all...]
WebIconDatabase.h 48 class WebIconDatabase : public IWebIconDatabase, public WebCore::IconDatabaseClient
51 static WebIconDatabase* createInstance();
52 static WebIconDatabase* sharedWebIconDatabase();
54 WebIconDatabase();
55 ~WebIconDatabase();
119 static WebIconDatabase* m_sharedWebIconDatabase;
ForEachCoClass.h 49 macro(WebIconDatabase) \
  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 25 * and WebView.getIconDatabase() will return a WebIconDatabase object. This
26 * WebIconDatabase object is a single instance and all methods operate on that
35 public class WebIconDatabase {
107 * Get the global instance of WebIconDatabase.
108 * @return A single instance of WebIconDatabase. It will be the same
112 public static WebIconDatabase getInstance() {
120 protected WebIconDatabase() {}
WebViewFactoryProvider.java 80 * Gets the singleton WebIconDatabase instance for this WebView implementation. The
83 * @return the singleton WebIconDatabase instance
85 WebIconDatabase getWebIconDatabase();
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebIconDatabaseClient.mm 47 [[WebIconDatabase sharedIconDatabase] _sendDidRemoveAllIconsNotification];
56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
  /external/webkit/Source/WebKit2/WebProcess/IconDatabase/
WebIconDatabaseProxy.cpp 67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0);
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0);
78 if (!m_process->connection()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messages::WebIconDatabase::SynchronousIconDataForPageURL::Reply(result), 0))
117 m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0);
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0);
139 m_process->connection()->send(Messages::WebIconDatabase::SetIconDataForIconURL(data, iconURL), 0);
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.cpp 29 #include "WebIconDatabase.h"
80 static WebIconDatabase* gIconDatabaseClient = new WebIconDatabase();
82 bool WebIconDatabase::performImport()
89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL)
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL)
115 void WebIconDatabase::didRemoveAllIcons()
119 void WebIconDatabase::didFinishURLImport()
124 void WebIconDatabase::RegisterForIconNotification(WebIconDatabaseClient* client
    [all...]
WebIconDatabase.h 48 class WebIconDatabase : public WebCore::IconDatabaseClient {
50 WebIconDatabase() : mDeliveryRequested(false) {}
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKIconDatabase.cpp 30 #include "WebIconDatabase.h"
36 return toAPI(WebIconDatabase::APIType);
WKAPICast.h 67 class WebIconDatabase;
97 WK_ADD_API_MAPPING(WKIconDatabaseRef, WebIconDatabase)
  /frameworks/base/core/java/android/provider/
Browser.java 33 import android.webkit.WebIconDatabase;
407 final WebIconDatabase iconDb = WebIconDatabase.getInstance();
457 * {@link WebIconDatabase}.
472 final WebIconDatabase iconDb = WebIconDatabase.getInstance();
570 WebIconDatabase.IconListener listener) {
571 WebIconDatabase.getInstance().bulkRequestIconForPageUrl(cr, where, listener);
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebChromeClientTest.java 26 import android.webkit.WebIconDatabase;
35 private WebIconDatabase mIconDb;
104 mIconDb = WebIconDatabase.getInstance();
  /packages/apps/Browser/src/com/android/browser/
Bookmarks.java 34 import android.webkit.WebIconDatabase;
118 WebIconDatabase.getInstance().releaseIconForPageUrl(url);
  /external/webkit/Source/WebKit/win/Interfaces/
WebKit.idl 170 coclass WebIconDatabase {

Completed in 1983 milliseconds

1 2