HomeSort by relevance Sort by last modified time
    Searched refs:iconURL (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Source/WebKit2/WebProcess/IconDatabase/
WebIconDatabaseProxy.cpp 88 // 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)
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)
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)
117 m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0);
127 void WebIconDatabaseProxy::iconDataForIconURL(const String& iconURL, PassRefPtr<WebCore::IconDataCallback> callback)
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL)
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0)
    [all...]
  /external/webkit/Source/WebCore/loader/icon/
PageURLRecord.h 45 PageURLSnapshot(const String& pageURL, const String& iconURL)
47 , m_iconURL(iconURL)
51 const String& iconURL() const { return m_iconURL; }
IconRecord.h 60 IconSnapshot(const String& iconURL, int timestamp, SharedBuffer* data)
61 : m_iconURL(iconURL)
66 const String& iconURL() const { return m_iconURL; }
91 String iconURL() { return m_iconURL; }
IconLoader.cpp 72 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)
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());
PageURLRecord.cpp 60 return PageURLSnapshot(m_pageURL, (m_iconRecord && !forDeletion) ? m_iconRecord->iconURL() : String());
IconDatabase.h 93 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);
IconDatabase.cpp 196 // 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(), iconRecord->snapshot(true))
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebIconDatabase.cpp 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))
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionPanel.js 31 WebInspector.ExtensionPanel = function(id, label, iconURL, options)
34 this._addStyleRule(".toolbar-item." + id + " .toolbar-icon", "background-image: url(" + iconURL + ");");
ExtensionAPI.js 169 create: function(title, iconURL, pageURL, callback)
176 icon: expandURL(iconURL),
  /external/webkit/Source/WebKit/chromium/src/
WebNotification.cpp 81 WebURL WebNotification::iconURL() const
84 return m_private->iconURL();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDesktopNotificationsDelegate.idl 53 HRESULT iconURL([out, retval] BSTR* result);
IWebIconDatabase.idl 150 HRESULT iconURLForURL([in] BSTR url, [out, retval] BSTR* iconURL);
  /external/webkit/Source/WebCore/loader/icon/wince/
IconDatabaseWinCE.cpp 63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {}
  /external/webkit/Source/WebKit/chromium/public/
WebNotification.h 75 WEBKIT_API WebURL iconURL() const;
  /external/webkit/Source/WebCore/notifications/
Notification.cpp 109 if (iconURL().isEmpty()) {
173 m_loader = ThreadableLoader::create(scriptExecutionContext(), this, ResourceRequest(iconURL()), options);
Notification.h 74 KURL iconURL() { return m_contents.icon(); }
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.cpp 55 HRESULT STDMETHODCALLTYPE iconURL(BSTR* result);
108 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::iconURL(BSTR* result)
  /external/webkit/Tools/DumpRenderTree/chromium/
NotificationPresenter.cpp 99 notification.iconURL().isEmpty() ? "" :
100 notification.iconURL().spec().data(),
  /external/webkit/Source/WebKit/win/
WebIconDatabase.h 94 /* [retval][out] */ BSTR *iconURL);
WebIconDatabase.cpp 232 /* [retval][out] */ BSTR* iconURL)
234 if (!url || !iconURL)
237 *iconURL = iconURLBSTR.release();
  /external/webkit/Tools/DumpRenderTree/win/
DRTDesktopNotificationPresenter.cpp 81 notification->iconURL(&url);
  /external/webkit/Source/WebCore/loader/
DocumentLoader.cpp 664 void DocumentLoader::setIconURL(const String& iconURL)
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/
LegacyWebArchive.cpp 549 const String& iconURL = iconDatabase().synchronousIconURLForPageURL(responseURL);
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/
WebIconDatabase.mm 622 NSString *url, *iconURL;
624 // First, we'll iterate through the PageURL->IconURL map
626 iconURL = [pageURLToIconURL objectForKey:url];
627 if (!iconURL)
629 iconDatabase().importIconURLForPageURL(iconURL, url);

Completed in 272 milliseconds

1 2