Home
last modified time | relevance | path

Searched refs:pageURL (Results 1 – 25 of 27) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/
DWebIconDatabase.cpp101 void WebIconDatabase::retainIconForPageURL(const String& pageURL) in retainIconForPageURL() argument
104 m_iconDatabaseImpl->retainIconForPageURL(pageURL); in retainIconForPageURL()
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL) in releaseIconForPageURL() argument
110 m_iconDatabaseImpl->releaseIconForPageURL(pageURL); in releaseIconForPageURL()
113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) in setIconURLForPageURL() argument
115 …K2 UIProcess setting icon URL %s for page URL %s", iconURL.ascii().data(), pageURL.ascii().data()); in setIconURLForPageURL()
117 m_iconDatabaseImpl->setIconURLForPageURL(iconURL, pageURL); in setIconURLForPageURL()
177 Image* WebIconDatabase::imageForPageURL(const String& pageURL) in imageForPageURL() argument
179 if (!m_webContext || !m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || pageURL.isEmpty()) in imageForPageURL()
184 return m_iconDatabaseImpl->synchronousIconForPageURL(pageURL, WebCore::IntSize(32, 32)); in imageForPageURL()
[all …]
DWebIconDatabase.messages.in24 RetainIconForPageURL(WTF::String pageURL)
25 ReleaseIconForPageURL(WTF::String pageURL)
26 SetIconURLForPageURL(WTF::String iconURL, WTF::String pageURL)
29 SynchronousIconDataForPageURL(WTF::String pageURL) -> (CoreIPC::DataReference iconData)
30 SynchronousIconURLForPageURL(WTF::String pageURL) -> (WTF::String iconURL)
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
DWebIconDatabaseProxy.cpp65 void WebIconDatabaseProxy::retainIconForPageURL(const String& pageURL) in retainIconForPageURL() argument
67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0); in retainIconForPageURL()
70 void WebIconDatabaseProxy::releaseIconForPageURL(const String& pageURL) in releaseIconForPageURL() argument
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0); in releaseIconForPageURL()
75 Image* WebIconDatabaseProxy::synchronousIconForPageURL(const String& pageURL, const IntSize& size) in synchronousIconForPageURL() argument
78 …ion()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messages::WebIc… in synchronousIconForPageURL()
86 String WebIconDatabaseProxy::synchronousIconURLForPageURL(const String& pageURL) in synchronousIconURLForPageURL() argument
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL) in setIconURLForPageURL() argument
133 …m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0… in setIconURLForPageURL()
/external/webkit/Source/WebCore/loader/icon/
DIconDatabase.cpp299 void IconDatabase::readIconForPageURLFromDisk(const String& pageURL) in readIconForPageURLFromDisk() argument
304 synchronousIconForPageURL(pageURL, IntSize(0, 0)); in readIconForPageURLFromDisk()
411 String pageURL; in retainIconForPageURL() local
414 pageURL = pageURLOriginal.crossThreadString(); in retainIconForPageURL()
416 record = new PageURLRecord(pageURL); in retainIconForPageURL()
417 m_pageURLToRecordMap.set(pageURL, record); in retainIconForPageURL()
421 if (pageURL.isNull()) in retainIconForPageURL()
422 pageURL = pageURLOriginal.crossThreadString(); in retainIconForPageURL()
425 m_retainedPageURLs.add(pageURL); in retainIconForPageURL()
435 if (!m_privateBrowsingEnabled && m_pageURLsPendingSync.contains(pageURL)) { in retainIconForPageURL()
[all …]
DPageURLRecord.h45 PageURLSnapshot(const String& pageURL, const String& iconURL) in PageURLSnapshot() argument
46 : m_pageURL(pageURL) in PageURLSnapshot()
50 const String& pageURL() const { return m_pageURL; } in pageURL() function
61 PageURLRecord(const String& pageURL);
DPageURLRecord.cpp36 PageURLRecord::PageURLRecord(const String& pageURL) in PageURLRecord() argument
37 : m_pageURL(pageURL) in PageURLRecord()
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/UIProcess/API/C/
DWKIconDatabase.h36 …idChangeIconForPageURLCallback)(WKIconDatabaseRef iconDatabase, WKURLRef pageURL, const void* clie…
51 WK_EXPORT void WKIconDatabaseRetainIconForURL(WKIconDatabaseRef iconDatabase, WKURLRef pageURL);
52 WK_EXPORT void WKIconDatabaseReleaseIconForURL(WKIconDatabaseRef iconDatabase, WKURLRef pageURL);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
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/WebKit/win/
DWebIconDatabase.cpp336 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL) in didImportIconURLForPageURL() argument
339 m_notificationQueue.append(pageURL.threadsafeCopy()); in didImportIconURLForPageURL()
343 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL) in didImportIconDataForPageURL() argument
346 didImportIconURLForPageURL(pageURL); in didImportIconDataForPageURL()
349 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL) in didChangeIconForPageURL() argument
352 didImportIconURLForPageURL(pageURL); in didChangeIconForPageURL()
394 static void postDidAddIconNotification(const String& pageURL, WebIconDatabase* iconDB) in postDidAddIconNotification() argument
399 RetainPtr<CFStringRef> url(AdoptCF, pageURL.createCFString()); in postDidAddIconNotification()
/external/webkit/Source/WebKit/android/jni/
DWebIconDatabase.cpp89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL) in didImportIconURLForPageURL() argument
95 mNotifications.append(pageURL); in didImportIconURLForPageURL()
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL) in didImportIconDataForPageURL() argument
106 didImportIconURLForPageURL(pageURL); in didImportIconDataForPageURL()
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL) in didChangeIconForPageURL() argument
112 didImportIconURLForPageURL(pageURL); in didChangeIconForPageURL()
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkiticondatabase.cpp263 String pageURL = String::fromUTF8(pageURI); in webkit_icon_database_get_icon_uri() local
264 return g_strdup(WebCore::iconDatabase().synchronousIconURLForPageURL(pageURL).utf8().data()); in webkit_icon_database_get_icon_uri()
291 String pageURL = String::fromUTF8(pageURI); in webkit_icon_database_get_icon_pixbuf() local
294 …WebCore::Image* icon = WebCore::iconDatabase().synchronousIconForPageURL(pageURL, WebCore::IntSize… in webkit_icon_database_get_icon_pixbuf()
/external/chromium/chrome/browser/ui/cocoa/
Dbug_report_window_controller_unittest.mm45 EXPECT_NSEQ(@"chrome://newtab/", [controller pageURL]);
65 EXPECT_FALSE([controller pageURL]);
Dbug_report_window_controller.h76 @property(nonatomic, copy) NSString* pageURL;
Dbug_report_window_controller.mm22 @synthesize pageURL = pageURL_;
/external/webkit/Source/WebKit/chromium/public/
DWebContextMenuData.h78 WebURL pageURL; member
/external/webkit/Source/WebCore/loader/icon/wince/
DIconDatabaseWinCE.cpp63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {} in setIconURLForPageURL() argument
/external/chromium/webkit/glue/
Dcontext_menu.cc31 page_url(data.pageURL), in ContextMenuParams()
/external/webkit/Source/WebCore/inspector/front-end/
DExtensionAPI.js169 create: function(title, iconURL, pageURL, callback) argument
177 url: expandURL(pageURL)
/external/webkit/Source/WebKit/mac/Misc/
DWebIconDatabase.mm188 - (void)releaseIconForURL:(NSString *)pageURL
191 ASSERT(pageURL);
195 iconDatabase().releaseIconForPageURL(pageURL);
/external/webkit/Source/WebKit/chromium/src/
DContextMenuClientImpl.cpp244 data.pageURL = urlFromFrame(m_webView->mainFrameImpl()->frame()); in getCustomMenuFromDefaultItems()
/external/webkit/Source/WebKit/mac/
DChangeLog1702 (-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]):
DChangeLog-2006-02-0912133 …(-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): re-ena…
18200 (-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]):
18609 …(-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): take a…
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3129299 …(IconLoader::receivedAllData): Moved the "pageURL to iconURL mapping logic" to Frame::commitIconUR…
29303 … (WebCore::Frame::commitIconURLToIconDatabase): Map the completed doc's pageURL to the iconURL
38794 2) Added a pageURL->iconURL hashmap to cache database results, as an optimization
38795 3) Fix a bug in setIconURLForPageURL code where the pageURL would still point to an old icon
DChangeLog-2005-08-2353835 …(-[WebCoreKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): ta…

12