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

  /external/webkit/WebCore/loader/icon/
IconLoader.cpp 70 RefPtr<SubresourceLoader> loader = SubresourceLoader::create(m_frame, this, m_frame->loader()->iconURL());
72 LOG_ERROR("Failed to start load for icon at url %s", m_frame->loader()->iconURL().string().ascii().data());
144 void IconLoader::finishLoading(const KURL& iconURL, PassRefPtr<SharedBuffer> data)
153 if (!iconURL.isEmpty() && m_loadIsInProgress) {
154 LOG(IconDatabase, "IconLoader::finishLoading() - Committing iconURL %s to database", iconURL.string().ascii().data());
155 m_frame->loader()->commitIconURLToIconDatabase(iconURL);
159 iconDatabase()->setIconDataForIconURL(data, iconURL.string());
PageURLRecord.h 47 , iconURL(icon)
51 String iconURL;
PageURLRecord.cpp 60 return PageURLSnapshot(m_pageURL, (m_iconRecord && !forDeletion) ? m_iconRecord->iconURL() : String());
IconRecord.h 57 : iconURL(url)
62 String iconURL;
82 String iconURL() { return m_iconURL; }
IconDatabase.h 85 void setIconURLForPageURL(const String& iconURL, const String& pageURL);
136 PassRefPtr<IconRecord> getOrCreateIconRecord(const String& iconURL);
173 void importIconURLForPageURL(const String& iconURL, const String& pageURL);
174 void importIconDataForIconURL(PassRefPtr<SharedBuffer> data, const String& iconURL);
206 int64_t getIconIDForIconURLFromSQLDatabase(const String& iconURL);
208 PassRefPtr<SharedBuffer> getImageDataForIconURLFromSQLDatabase(const String& iconURL);
209 void removeIconFromSQLDatabase(const String& iconURL);
IconDatabase.cpp 195 // Clear the iconURL -> IconRecord map
240 // 1 - The initial url import is incomplete and this pageURL was marked to be notified once it is complete if an iconURL exists
256 // In this case, the pageURL is already in the set to alert the client when the iconURL mapping is complete so
323 // 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
328 // Possible the pageRecord is around because it's a retained pageURL with no iconURL, so we have to check
329 return pageRecord->iconRecord() ? pageRecord->iconRecord()->iconURL().threadsafeCopy() : String();
426 // If we read the iconURLs yet, we want to avoid any pageURL->iconURL lookups and the pageURLsPendingDeletion is moot,
476 ASSERT(!iconRecord || (iconRecord && m_iconURLToRecordMap.get(iconRecord->iconURL()) == iconRecord));
488 m_iconURLToRecordMap.remove(iconRecord->iconURL());
501 m_iconsPendingSync.set(iconRecord->iconURL(), iconRecord->snapshot(true))
    [all...]
  /external/webkit/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/WebCore/loader/icon/wince/
IconDatabaseWince.cpp 56 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {}
  /external/webkit/WebKit/win/WebCoreSupport/
WebDesktopNotificationsDelegate.cpp 55 HRESULT STDMETHODCALLTYPE iconURL(BSTR* result);
108 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::iconURL(BSTR* result)
  /external/webkit/WebKit/win/
WebIconDatabase.h 97 /* [retval][out] */ BSTR *iconURL);
WebIconDatabase.cpp 233 /* [retval][out] */ BSTR* iconURL)
235 if (!url || !iconURL)
238 *iconURL = iconURLBSTR.release();
  /external/webkit/WebKitTools/DumpRenderTree/win/
DRTDesktopNotificationPresenter.cpp 81 notification->iconURL(&url);
  /external/webkit/WebCore/loader/archive/cf/
LegacyWebArchive.cpp 548 const String& iconURL = iconDatabase()->iconURLForPageURL(responseURL);
549 if (!iconURL.isEmpty() && iconDatabase()->iconDataKnownForIconURL(iconURL)) {
551 if (RefPtr<ArchiveResource> resource = ArchiveResource::create(iconImage->data(), KURL(ParsedURLString, iconURL), "image/x-icon", "", ""))
  /external/webkit/WebKit/mac/Misc/
WebIconDatabase.mm 631 NSString *url, *iconURL;
633 // First, we'll iterate through the PageURL->IconURL map
635 iconURL = [pageURLToIconURL objectForKey:url];
636 if (!iconURL)
638 iconDatabase()->importIconURLForPageURL(iconURL, url);
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 278 if (m_loader->frameLoader() && m_requestURL == m_loader->frameLoader()->iconURL())
  /external/bluetooth/bluez/lib/bluetooth/
sdp_lib.h 316 * IconURL: a URL to an icon that can be used to represent this service.
320 void sdp_set_url_attr(sdp_record_t *rec, const char *clientExecURL, const char *docURL, const char *iconURL);
  /external/webkit/WebCore/loader/
FrameLoader.h 230 KURL iconURL();
FrameLoader.cpp 625 KURL FrameLoader::iconURL()
631 // If we have an iconURL from a Link element, return that
632 if (!m_frame->document()->iconURL().isEmpty())
633 return KURL(ParsedURLString, m_frame->document()->iconURL());
635 // Don't return a favicon iconURL unless we're http or https
    [all...]
  /external/webkit/WebCore/dom/
Document.h     [all...]
Document.cpp     [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 385 const KURL& url = frameLoader->iconURL();
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp     [all...]

Completed in 315 milliseconds