Home | History | Annotate | Download | only in jni

Lines Matching refs:WebIconDatabase

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)
126 WebIconDatabase* db = gIconDatabaseClient;
136 void WebIconDatabase::UnregisterForIconNotification(WebIconDatabaseClient* client)
138 WebIconDatabase* db = gIconDatabaseClient;
148 void WebIconDatabase::DeliverNotifications(void* v)
151 ((WebIconDatabase*)v)->deliverNotifications();
155 void WebIconDatabase::deliverNotifications()
201 ALOGV("Opening WebIconDatabase file '%s'", pathStr.latin1().data());
271 jclass webIconDatabase = env->FindClass("android/webkit/WebIconDatabaseClassic");
272 ALOG_ASSERT(webIconDatabase, "Unable to find class android.webkit.WebIconDatabaseClassic");
273 env->DeleteLocalRef(webIconDatabase);