Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:pageURL

101 void WebIconDatabase::retainIconForPageURL(const String& pageURL)
104 m_iconDatabaseImpl->retainIconForPageURL(pageURL);
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL)
110 m_iconDatabaseImpl->releaseIconForPageURL(pageURL);
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);
177 Image* WebIconDatabase::imageForPageURL(const String& pageURL)
179 if (!m_webContext || !m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || pageURL.isEmpty())
184 return m_iconDatabaseImpl->synchronousIconForPageURL(pageURL, WebCore::IntSize(32, 32));
214 void WebIconDatabase::didImportIconURLForPageURL(const String& pageURL)
216 didChangeIconForPageURL(pageURL);
219 void WebIconDatabase::didImportIconDataForPageURL(const String& pageURL)
221 didChangeIconForPageURL(pageURL);
224 void WebIconDatabase::didChangeIconForPageURL(const String& pageURL)
226 m_iconDatabaseClient.didChangeIconForPageURL(this, WebURL::create(pageURL).get());