/external/webkit/Source/WebKit2/UIProcess/ |
D | WebIconDatabase.cpp | 101 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 …]
|
D | WebIconDatabase.messages.in | 24 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/ |
D | WebIconDatabaseProxy.cpp | 65 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/ |
D | IconDatabase.cpp | 299 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 …]
|
D | PageURLRecord.h | 45 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);
|
D | PageURLRecord.cpp | 36 PageURLRecord::PageURLRecord(const String& pageURL) in PageURLRecord() argument 37 : m_pageURL(pageURL) in PageURLRecord()
|
D | IconDatabase.h | 93 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/ |
D | WKIconDatabase.h | 36 …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/ |
D | WebIconDatabaseClient.mm | 51 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/ |
D | WebIconDatabase.cpp | 336 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/ |
D | WebIconDatabase.cpp | 89 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/ |
D | webkiticondatabase.cpp | 263 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/ |
D | bug_report_window_controller_unittest.mm | 45 EXPECT_NSEQ(@"chrome://newtab/", [controller pageURL]); 65 EXPECT_FALSE([controller pageURL]);
|
D | bug_report_window_controller.h | 76 @property(nonatomic, copy) NSString* pageURL;
|
D | bug_report_window_controller.mm | 22 @synthesize pageURL = pageURL_;
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebContextMenuData.h | 78 WebURL pageURL; member
|
/external/webkit/Source/WebCore/loader/icon/wince/ |
D | IconDatabaseWinCE.cpp | 63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {} in setIconURLForPageURL() argument
|
/external/chromium/webkit/glue/ |
D | context_menu.cc | 31 page_url(data.pageURL), in ContextMenuParams()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | ExtensionAPI.js | 169 create: function(title, iconURL, pageURL, callback) argument 177 url: expandURL(pageURL)
|
/external/webkit/Source/WebKit/mac/Misc/ |
D | WebIconDatabase.mm | 188 - (void)releaseIconForURL:(NSString *)pageURL 191 ASSERT(pageURL); 195 iconDatabase().releaseIconForPageURL(pageURL);
|
/external/webkit/Source/WebKit/chromium/src/ |
D | ContextMenuClientImpl.cpp | 244 data.pageURL = urlFromFrame(m_webView->mainFrameImpl()->frame()); in getCustomMenuFromDefaultItems()
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog | 1702 (-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]):
|
D | ChangeLog-2006-02-09 | 12133 …(-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): re-ena… 18200 (-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): 18609 …(-[WebKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): take a…
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-12-31 | 29299 …(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
|
D | ChangeLog-2005-08-23 | 53835 …(-[WebCoreKeyGenerator signedPublicKeyAndChallengeStringWithStrengthIndex:challenge:pageURL:]): ta…
|