Home | History | Annotate | Download | only in UIProcess

Lines Matching defs:WebIconDatabase

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)
84 void WebIconDatabase::enableDatabaseCleanup()
101 void WebIconDatabase::retainIconForPageURL(const String& pageURL)
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL)
113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL)
120 void WebIconDatabase::setIconDataForIconURL(const CoreIPC::DataReference& iconData, const String& iconURL)
130 void WebIconDatabase::synchronousIconDataForPageURL(const String&, CoreIPC::DataReference& iconData)
135 void WebIconDatabase::synchronousIconURLForPageURL(const String&, String& iconURL)
140 void WebIconDatabase::synchronousIconDataKnownForIconURL(const String&, bool& iconDataKnown) const
145 void WebIconDatabase::synchronousLoadDecisionForIconURL(const String&, int& loadDecision) const
150 void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t callbackID)
177 Image* WebIconDatabase::imageForPageURL(const String& pageURL)
187 void WebIconDatabase::removeAllIcons()
192 void WebIconDatabase::checkIntegrityBeforeOpening()
197 void WebIconDatabase::close()
202 void WebIconDatabase::initializeIconDatabaseClient(const WKIconDatabaseClient* client)
208 bool WebIconDatabase::performImport()
214 void WebIconDatabase::didImportIconURLForPageURL(const String& pageURL)
219 void WebIconDatabase::didImportIconDataForPageURL(const String& pageURL)
224 void WebIconDatabase::didChangeIconForPageURL(const String& pageURL)
229 void WebIconDatabase::didRemoveAllIcons()
234 void WebIconDatabase::didFinishURLImport()
262 void WebIconDatabase::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* decoder)
267 CoreIPC::SyncReplyMode WebIconDatabase::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* decoder, CoreIPC::ArgumentEncoder* reply)