Searched refs:iconURL (Results 1 - 25 of 36) sorted by relevance

12

/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
H A DWebIconDatabaseProxy.cpp88 // FIXME: This needs to ask the UI process for the iconURL, but it can't do so synchronously because it will slow down page loading.
93 bool WebIconDatabaseProxy::synchronousIconDataKnownForIconURL(const String& iconURL) argument
95 // FIXME: This needs to ask the UI process for the iconURL, but it can't do so synchronously because it will slow down page loading.
100 IconLoadDecision WebIconDatabaseProxy::synchronousLoadDecisionForIconURL(const String& iconURL, DocumentLoader* documentLoader) argument
102 // FIXME: This needs to ask the UI process for the iconURL, but it can't do so synchronously because it will slow down page loading.
112 void WebIconDatabaseProxy::loadDecisionForIconURL(const String& iconURL, PassRefPtr<WebCore::IconLoadDecisionCallback> callback) argument
117 m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0);
127 void WebIconDatabaseProxy::iconDataForIconURL(const String& iconURL, PassRefPtr<WebCore::IconDataCallback> callback) argument
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL) argument
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageUR
136 setIconDataForIconURL(PassRefPtr<SharedBuffer> iconData, const String& iconURL) argument
[all...]
/external/webkit/Source/WebCore/loader/icon/
H A DPageURLRecord.h45 PageURLSnapshot(const String& pageURL, const String& iconURL) argument
47 , m_iconURL(iconURL)
51 const String& iconURL() const { return m_iconURL; } function in class:WebCore::PageURLSnapshot
H A DIconLoader.cpp72 ResourceRequest resourceRequest(m_frame->loader()->iconURL());
77 LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii().data());
149 void IconLoader::finishLoading(const KURL& iconURL, PassRefPtr<SharedBuffer> data) argument
158 if (!iconURL.isEmpty() && m_loadIsInProgress) {
159 LOG(IconDatabase, "IconLoader::finishLoading() - Committing iconURL %s to database", iconURL.string().ascii().data());
160 m_frame->loader()->commitIconURLToIconDatabase(iconURL);
164 iconDatabase().setIconDataForIconURL(data, iconURL.string());
H A DIconRecord.h60 IconSnapshot(const String& iconURL, int timestamp, SharedBuffer* data) argument
61 : m_iconURL(iconURL)
66 const String& iconURL() const { return m_iconURL; } function in class:WebCore::IconSnapshot
91 String iconURL() { return m_iconURL; } function in class:WebCore::IconRecord
H A DPageURLRecord.cpp60 return PageURLSnapshot(m_pageURL, (m_iconRecord && !forDeletion) ? m_iconRecord->iconURL() : String());
H A DIconDatabase.cpp196 // Clear the iconURL -> IconRecord map
241 // 1 - The initial url import is incomplete and this pageURL was marked to be notified once it is complete if an iconURL exists
257 // In this case, the pageURL is already in the set to alert the client when the iconURL mapping is complete so
324 // 1 - The initial url import is incomplete and this pageURL has already been marked to be notified once it is complete if an iconURL exists
329 // Possible the pageRecord is around because it's a retained pageURL with no iconURL, so we have to check
330 return pageRecord->iconRecord() ? pageRecord->iconRecord()->iconURL().threadsafeCopy() : String();
427 // If we read the iconURLs yet, we want to avoid any pageURL->iconURL lookups and the pageURLsPendingDeletion is moot,
477 ASSERT(!iconRecord || (iconRecord && m_iconURLToRecordMap.get(iconRecord->iconURL()) == iconRecord));
489 m_iconURLToRecordMap.remove(iconRecord->iconURL());
502 m_iconsPendingSync.set(iconRecord->iconURL(), iconRecor
521 String iconURL = iconURLOriginal.crossThreadString(); local
644 synchronousLoadDecisionForIconURL(const String& iconURL, DocumentLoader* notificationDocumentLoader) argument
676 synchronousIconDataKnownForIconURL(const String& iconURL) argument
873 getOrCreateIconRecord(const String& iconURL) argument
924 importIconURLForPageURL(const String& iconURL, const String& pageURL) argument
934 importIconDataForIconURL(PassRefPtr<SharedBuffer> data, const String& iconURL) argument
1224 String iconURL = query.getColumnText(1); local
1869 setIconURLForPageURLInSQLDatabase(const String& iconURL, const String& pageURL) argument
1918 getIconIDForIconURLFromSQLDatabase(const String& iconURL) argument
1938 addIconURLToSQLDatabase(const String& iconURL) argument
1970 getImageDataForIconURLFromSQLDatabase(const String& iconURL) argument
1992 removeIconFromSQLDatabase(const String& iconURL) argument
[all...]
H A DIconDatabase.h93 virtual void setIconURLForPageURL(const String& iconURL, const String& pageURL);
142 PassRefPtr<IconRecord> getOrCreateIconRecord(const String& iconURL);
179 virtual void importIconURLForPageURL(const String& iconURL, const String& pageURL);
180 virtual void importIconDataForIconURL(PassRefPtr<SharedBuffer> data, const String& iconURL);
214 int64_t getIconIDForIconURLFromSQLDatabase(const String& iconURL);
216 PassRefPtr<SharedBuffer> getImageDataForIconURLFromSQLDatabase(const String& iconURL);
217 void removeIconFromSQLDatabase(const String& iconURL);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebIconDatabase.cpp113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) argument
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) argument
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) argument
137 iconURL = String();
150 void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_t callbackID) argument
152 LOG(IconDatabase, "WK2 UIProcess getting load decision for icon URL %s with callback ID %lli", iconURL
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionPanel.js31 WebInspector.ExtensionPanel = function(id, label, iconURL, options)
34 this._addStyleRule(".toolbar-item." + id + " .toolbar-icon", "background-image: url(" + iconURL + ");");
/external/webkit/Source/WebKit/chromium/src/
H A DWebNotification.cpp81 WebURL WebNotification::iconURL() const function in class:WebKit::WebNotification
84 return m_private->iconURL();
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDesktopNotificationsDelegate.idl53 HRESULT iconURL([out, retval] BSTR* result);
H A DIWebIconDatabase.idl150 HRESULT iconURLForURL([in] BSTR url, [out, retval] BSTR* iconURL);
/external/webkit/Source/WebCore/loader/icon/wince/
H A DIconDatabaseWinCE.cpp63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {} argument
/external/webkit/Source/WebCore/notifications/
H A DNotification.cpp109 if (iconURL().isEmpty()) {
173 m_loader = ThreadableLoader::create(scriptExecutionContext(), this, ResourceRequest(iconURL()), options);
H A DNotification.h74 KURL iconURL() { return m_contents.icon(); } function in class:WebCore::Notification
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.cpp55 HRESULT STDMETHODCALLTYPE iconURL(BSTR* result);
108 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::iconURL(BSTR* result) function in class:NotificationCOMWrapper
/external/webkit/Tools/DumpRenderTree/chromium/
H A DNotificationPresenter.cpp99 notification.iconURL().isEmpty() ? "" :
100 notification.iconURL().spec().data(),
/external/webkit/Source/WebKit/chromium/public/
H A DWebNotification.h75 WEBKIT_API WebURL iconURL() const;
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp81 notification->iconURL(&url);
/external/webkit/Source/WebKit/win/
H A DWebIconDatabase.cpp232 /* [retval][out] */ BSTR* iconURL)
234 if (!url || !iconURL)
237 *iconURL = iconURLBSTR.release();
230 iconURLForURL( BSTR url, BSTR* iconURL) argument
H A DWebIconDatabase.h94 /* [retval][out] */ BSTR *iconURL);
/external/webkit/Source/WebCore/loader/
H A DDocumentLoader.cpp664 void DocumentLoader::setIconURL(const String& iconURL) argument
666 if (iconURL.isEmpty())
669 if (m_pageIconURL != iconURL) {
670 m_pageIconURL = iconURL;
843 m_frame->loader()->iconLoadDecisionReceived(iconDatabase().synchronousLoadDecisionForIconURL(KURL(frameLoader()->iconURL()), this));
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp549 const String& iconURL = iconDatabase().synchronousIconURLForPageURL(responseURL); local
550 if (!iconURL.isEmpty() && iconDatabase().synchronousIconDataKnownForIconURL(iconURL)) {
552 if (RefPtr<ArchiveResource> resource = ArchiveResource::create(iconImage->data(), KURL(ParsedURLString, iconURL), "image/x-icon", "", ""))
/external/webkit/Source/WebKit/mac/Misc/
H A DWebIconDatabase.mm622 NSString *url, *iconURL;
626 iconURL = [pageURLToIconURL objectForKey:url];
627 if (!iconURL)
629 iconDatabase().importIconURLForPageURL(iconURL, url);
/external/chromium/chrome/browser/resources/options/chromeos/
H A Dinternet_network_element.js131 iconURL: network[6],
164 if (this.data.iconURL) {
165 textDiv.style.backgroundImage = url(this.data.iconURL);

Completed in 1635 milliseconds

12