Home | History | Annotate | Download | only in jni

Lines Matching refs:webIconDatabase

29 #include "WebIconDatabase.h"
67 static WebIconDatabase* gIconDatabaseClient = new WebIconDatabase();
69 bool WebIconDatabase::performImport()
76 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
90 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL)
96 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL)
102 void WebIconDatabase::didRemoveAllIcons()
106 void WebIconDatabase::didFinishURLImport()
111 void WebIconDatabase::RegisterForIconNotification(WebIconDatabaseClient* client)
113 WebIconDatabase* db = gIconDatabaseClient;
123 void WebIconDatabase::UnregisterForIconNotification(WebIconDatabaseClient* client)
125 WebIconDatabase* db = gIconDatabaseClient;
135 void WebIconDatabase::DeliverNotifications(void* v)
138 ((WebIconDatabase*)v)->deliverNotifications();
142 void WebIconDatabase::deliverNotifications()
188 LOGV("Opening WebIconDatabase file '%s'", pathStr.latin1().data());
258 jclass webIconDatabase = env->FindClass("android/webkit/WebIconDatabase");
259 LOG_ASSERT(webIconDatabase, "Unable to find class android.webkit.WebIconDatabase");
260 env->DeleteLocalRef(webIconDatabase);
263 return jniRegisterNativeMethods(env, "android/webkit/WebIconDatabase",