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

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Notifications/
H A DWebNotification.cpp36 WebNotification::WebNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID) argument
39 , m_iconURL(iconURL)
H A DWebNotification.h46 static PassRefPtr<WebNotification> create(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID) argument
48 return adoptRef(new WebNotification(title, body, iconURL, tag, lang, dir, originString, notificationID));
53 const String& iconURL() const { return m_iconURL; } function in class:WebKit::WebNotification
62 WebNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID);
H A DWebNotificationManagerProxy.h58 void show(WebPageProxy*, const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t pageNotificationID);
H A DWebNotificationManagerProxy.cpp103 void WebNotificationManagerProxy::show(WebPageProxy* webPage, const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t pageNotificationID) argument
106 RefPtr<WebNotification> notification = WebNotification::create(title, body, iconURL, tag, lang, dir, originString, globalNotificationID);
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebNotification.h40 - (NSString *)iconURL;
H A DWebNotification.mm111 - (NSString *)iconURL
114 return core(self)->iconURL();
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DWebIconDatabase.cpp121 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) argument
123 LOG(IconDatabase, "WK2 UIProcess setting icon URL %s for page URL %s", iconURL.ascii().data(), pageURL.ascii().data());
125 m_iconDatabaseImpl->setIconURLForPageURL(iconURL, pageURL);
128 void WebIconDatabase::setIconDataForIconURL(const IPC::DataReference& iconData, const String& iconURL) argument
130 LOG(IconDatabase, "WK2 UIProcess setting icon data (%i bytes) for page URL %s", (int)iconData.size(), iconURL.ascii().data());
133 m_iconDatabaseImpl->setIconDataForIconURL(SharedBuffer::create(iconData.data(), iconData.size()), iconURL);
141 void WebIconDatabase::synchronousIconURLForPageURL(const String& pageURL, String& iconURL) argument
144 iconURL = String();
147 iconURL = m_iconDatabaseImpl->synchronousIconURLForPageURL(pageURL);
160 void WebIconDatabase::getLoadDecisionForIconURL(const String& iconURL, uint64_ argument
[all...]
H A DWebPageProxy.h1044 void showNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID);
H A DWebPageProxy.cpp4635 void WebPageProxy::showNotification(const String& title, const String& body, const String& iconURL, const String& tag, const String& lang, const String& dir, const String& originString, uint64_t notificationID) argument
4637 m_process->context().supplement<WebNotificationManagerProxy>()->show(this, title, body, iconURL, tag, lang, dir, originString, notificationID);
/macosx-10.10.1/WebKit2-7600.1.25/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*/)
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*)
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->parentProcessConnection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0);
127 void WebIconDatabaseProxy::iconDataForIconURL(const String& /*iconURL*/, PassRefPtr<WebCore::IconDataCallback>)
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL) argument
133 m_process->parentProcessConnection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageUR
136 setIconDataForIconURL(PassRefPtr<SharedBuffer> iconData, const String& iconURL) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKIconDatabase.h83 WK_EXPORT void WKIconDatabaseSetIconDataForIconURL(WKIconDatabaseRef iconDatabase, WKDataRef iconData, WKURLRef iconURL);
84 WK_EXPORT void WKIconDatabaseSetIconURLForPageURL(WKIconDatabaseRef iconDatabase, WKURLRef iconURL, WKURLRef pageURL);
H A DWKNotification.cpp52 return toCopiedAPI(toImpl(notification)->iconURL());
/macosx-10.10.1/WebKit-7600.1.25/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);
/macosx-10.10.1/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.cpp55 HRESULT STDMETHODCALLTYPE iconURL(BSTR* result);
108 HRESULT STDMETHODCALLTYPE NotificationCOMWrapper::iconURL(BSTR* result) function in class:NotificationCOMWrapper
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebIconDatabase.cpp234 /* [retval][out] */ BSTR* iconURL)
236 if (!url || !iconURL)
239 *iconURL = iconURLBSTR.release();
232 iconURLForURL( BSTR url, BSTR* iconURL) argument
H A DWebIconDatabase.h86 /* [retval][out] */ BSTR *iconURL);
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitFaviconDatabase.cpp198 const String& iconURL = database->priv->pageURLToIconURLMap.get(pageURL); local
199 if (iconURL == currentIconURL)
308 // If there's not a valid icon, but there's an iconURL registered,
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Notifications/
H A DWebNotificationManager.cpp155 m_process->parentProcessConnection()->send(Messages::WebPageProxy::ShowNotification(notification->title(), notification->body(), notification->iconURL().string(), notification->tag(), notification->lang(), notification->dir(), notification->scriptExecutionContext()->securityOrigin()->toString(), notificationID), page->pageID());
157 m_process->parentProcessConnection()->send(Messages::WebPageProxy::ShowNotification(notification->title(), notification->body(), notification->iconURL().string(), notification->replaceId(), notification->lang(), notification->dir(), notification->scriptExecutionContext()->securityOrigin()->toString(), notificationID), page->pageID());
/macosx-10.10.1/modemccl-25.1/CCLEngine/
H A DCCLEngine.c187 CFURLRef iconURL = 0; variable
796 iconURL = CFURLCreateFromFileSystemRepresentation(nil, (UInt8*) iconurl, strlen(iconurl), false /*notDir*/);
2756 if (iconURL)
2757 CFDictionaryAddValue(dict, kCFUserNotificationIconURLKey, iconURL);

Completed in 1193 milliseconds