Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:iconURL

113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL)
115 LOG(IconDatabase, "WK2 UIProcess setting icon URL %s for page URL %s", iconURL.ascii().data(), pageURL.ascii().data());
117 m_iconDatabaseImpl->setIconURLForPageURL(iconURL, pageURL);
120 void WebIconDatabase::setIconDataForIconURL(const CoreIPC::DataReference& iconData, const String& iconURL)
122 LOG(IconDatabase, "WK2 UIProcess setting icon data (%i bytes) for page URL %s", (int)iconData.size(), iconURL.ascii().data());
127 m_iconDatabaseImpl->setIconDataForIconURL(buffer.release(), iconURL);
135 void WebIconDatabase::synchronousIconURLForPageURL(const String&, String& iconURL)
137 iconURL = String();
150 void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t callbackID)
152 LOG(IconDatabase, "WK2 UIProcess getting load decision for icon URL %s with callback ID %lli", iconURL.ascii().data(), static_cast<long long>(callbackID));
157 if (!m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || iconURL.isEmpty()) {
164 IconLoadDecision decision = m_iconDatabaseImpl->synchronousLoadDecisionForIconURL(iconURL, 0);
169 m_pendingLoadDecisionURLMap.set(callbackID, iconURL);