Searched refs:pageURL (Results 1 - 18 of 18) sorted by relevance

/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebIconDatabaseClient.mm51 void WebIconDatabaseClient::didImportIconURLForPageURL(const String& pageURL)
56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
59 void WebIconDatabaseClient::didImportIconDataForPageURL(const String& pageURL)
62 didImportIconURLForPageURL(pageURL);
64 void WebIconDatabaseClient::didChangeIconForPageURL(const String& pageURL)
67 didImportIconURLForPageURL(pageURL);
/external/webkit/Source/WebCore/loader/icon/
H A DPageURLRecord.h45 PageURLSnapshot(const String& pageURL, const String& iconURL) argument
46 : m_pageURL(pageURL)
50 const String& pageURL() const { return m_pageURL; } function in class:WebCore::PageURLSnapshot
61 PageURLRecord(const String& pageURL);
H A DPageURLRecord.cpp36 PageURLRecord::PageURLRecord(const String& pageURL) argument
37 : m_pageURL(pageURL)
H A DIconDatabase.cpp241 // 1 - The initial url import is incomplete and this pageURL was marked to be notified once it is complete if an iconURL exists
242 // 2 - The initial url import IS complete and this pageURL has no icon
247 // If we ever reach this condition, we know we've already made the pageURL copy
257 // In this case, the pageURL is already in the set to alert the client when the iconURL mapping is complete so
262 // The only way we should *not* have an icon record is if this pageURL is retained but has no icon yet - make sure of that
299 void IconDatabase::readIconForPageURLFromDisk(const String& pageURL) argument
301 // The effect of asking for an Icon for a pageURL automatically queues it to be read from disk
304 synchronousIconForPageURL(pageURL, IntSize(0, 0));
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
325 // 2 - The initial url import IS complete and this pageURL ha
411 String pageURL; local
888 getOrCreatePageURLRecord(const String& pageURL) argument
924 importIconURLForPageURL(const String& iconURL, const String& pageURL) argument
1223 String pageURL = query.getColumnText(0); local
1869 setIconURLForPageURLInSQLDatabase(const String& iconURL, const String& pageURL) argument
1887 setIconIDForPageURLInSQLDatabase(int64_t iconID, const String& pageURL) argument
1904 removePageURLFromSQLDatabase(const String& pageURL) argument
2135 ImportedIconURLForPageURLWorkItem(IconDatabaseClient* client, const String& pageURL) argument
2158 ImportedIconDataForPageURLWorkItem(IconDatabaseClient* client, const String& pageURL) argument
2214 dispatchDidImportIconURLForPageURLOnMainThread(const String& pageURL) argument
2222 dispatchDidImportIconDataForPageURLOnMainThread(const String& pageURL) argument
[all...]
H A DIconDatabase.h93 virtual void setIconURLForPageURL(const String& iconURL, const String& pageURL);
143 PageURLRecord* getOrCreatePageURLRecord(const String& pageURL);
179 virtual void importIconURLForPageURL(const String& iconURL, const String& pageURL);
213 void removePageURLFromSQLDatabase(const String& pageURL);
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
H A DWebIconDatabaseProxy.cpp65 void WebIconDatabaseProxy::retainIconForPageURL(const String& pageURL) argument
67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0);
70 void WebIconDatabaseProxy::releaseIconForPageURL(const String& pageURL) argument
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0);
75 Image* WebIconDatabaseProxy::synchronousIconForPageURL(const String& pageURL, const IntSize& size) argument
78 if (!m_process->connection()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messages::WebIconDatabase::SynchronousIconDataForPageURL::Reply(result), 0))
86 String WebIconDatabaseProxy::synchronousIconURLForPageURL(const String& pageURL) argument
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL) argument
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKIconDatabase.h36 typedef void (*WKIconDatabaseDidChangeIconForPageURLCallback)(WKIconDatabaseRef iconDatabase, WKURLRef pageURL, const void* clientInfo);
51 WK_EXPORT void WKIconDatabaseRetainIconForURL(WKIconDatabaseRef iconDatabase, WKURLRef pageURL);
52 WK_EXPORT void WKIconDatabaseReleaseIconForURL(WKIconDatabaseRef iconDatabase, WKURLRef pageURL);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebIconDatabase.cpp101 void WebIconDatabase::retainIconForPageURL(const String& pageURL) argument
104 m_iconDatabaseImpl->retainIconForPageURL(pageURL);
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL) argument
110 m_iconDatabaseImpl->releaseIconForPageURL(pageURL);
113 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);
177 Image* WebIconDatabase::imageForPageURL(const String& pageURL) argument
179 if (!m_webContext || !m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || pageURL.isEmpty())
184 return m_iconDatabaseImpl->synchronousIconForPageURL(pageURL, WebCor
214 didImportIconURLForPageURL(const String& pageURL) argument
219 didImportIconDataForPageURL(const String& pageURL) argument
224 didChangeIconForPageURL(const String& pageURL) argument
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkiticondatabase.cpp263 String pageURL = String::fromUTF8(pageURI); local
264 return g_strdup(WebCore::iconDatabase().synchronousIconURLForPageURL(pageURL).utf8().data());
291 String pageURL = String::fromUTF8(pageURI); local
294 WebCore::Image* icon = WebCore::iconDatabase().synchronousIconForPageURL(pageURL, WebCore::IntSize(16, 16));
/external/webkit/Source/WebKit/win/
H A DWebIconDatabase.cpp336 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL) argument
339 m_notificationQueue.append(pageURL.threadsafeCopy());
343 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL) argument
346 didImportIconURLForPageURL(pageURL);
349 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL) argument
352 didImportIconURLForPageURL(pageURL);
394 static void postDidAddIconNotification(const String& pageURL, WebIconDatabase* iconDB) argument
399 RetainPtr<CFStringRef> url(AdoptCF, pageURL.createCFString());
/external/webkit/Source/WebKit/android/jni/
H A DWebIconDatabase.cpp89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL) argument
95 mNotifications.append(pageURL);
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL) argument
106 didImportIconURLForPageURL(pageURL);
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL) argument
112 didImportIconURLForPageURL(pageURL);
/external/chromium/chrome/browser/ui/cocoa/
H A Dbug_report_window_controller.h76 @property(nonatomic, copy) NSString* pageURL; variable
/external/chromium/webkit/glue/
H A Dcontext_menu.cc31 page_url(data.pageURL),
/external/webkit/Source/WebCore/loader/icon/wince/
H A DIconDatabaseWinCE.cpp63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {} argument
/external/webkit/Source/WebKit/chromium/public/
H A DWebContextMenuData.h78 WebURL pageURL; member in struct:WebKit::WebContextMenuData
/external/webkit/Source/WebKit/mac/Misc/
H A DWebIconDatabase.mm188 - (void)releaseIconForURL:(NSString *)pageURL
191 ASSERT(pageURL);
195 iconDatabase().releaseIconForPageURL(pageURL);
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionAPI.js169 create: function(title, iconURL, pageURL, callback)
177 url: expandURL(pageURL)
/external/webkit/Source/WebKit/chromium/src/
H A DContextMenuClientImpl.cpp244 data.pageURL = urlFromFrame(m_webView->mainFrameImpl()->frame());

Completed in 153 milliseconds