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

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
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/WebCore/loader/icon/
PageURLRecord.h 45 PageURLSnapshot(const String& pageURL, const String& iconURL)
46 : m_pageURL(pageURL)
50 const String& pageURL() const { return m_pageURL; }
61 PageURLRecord(const String& pageURL);
PageURLRecord.cpp 36 PageURLRecord::PageURLRecord(const String& pageURL)
37 : m_pageURL(pageURL)
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);
IconDatabase.cpp 241 // 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
256 // If the initial URL import isn't complete, it's possible to have a PageURL record without an associated icon
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)
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 exist
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/IconDatabase/
WebIconDatabaseProxy.cpp 65 void WebIconDatabaseProxy::retainIconForPageURL(const String& pageURL)
67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0);
70 void WebIconDatabaseProxy::releaseIconForPageURL(const String& pageURL)
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0);
75 Image* WebIconDatabaseProxy::synchronousIconForPageURL(const String& pageURL, const IntSize& size)
78 if (!m_process->connection()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messages::WebIconDatabase::SynchronousIconDataForPageURL::Reply(result), 0))
86 String WebIconDatabaseProxy::synchronousIconURLForPageURL(const String& pageURL)
131 void WebIconDatabaseProxy::setIconURLForPageURL(const String& iconURL, const String& pageURL)
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKIconDatabase.h 36 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/
WebIconDatabase.cpp 101 void WebIconDatabase::retainIconForPageURL(const String& pageURL)
104 m_iconDatabaseImpl->retainIconForPageURL(pageURL);
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL)
110 m_iconDatabaseImpl->releaseIconForPageURL(pageURL);
113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL)
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)
179 if (!m_webContext || !m_iconDatabaseImpl || !m_iconDatabaseImpl->isOpen() || pageURL.isEmpty())
184 return m_iconDatabaseImpl->synchronousIconForPageURL(pageURL, WebCore::IntSize(32, 32))
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkiticondatabase.cpp 263 String pageURL = String::fromUTF8(pageURI);
264 return g_strdup(WebCore::iconDatabase().synchronousIconURLForPageURL(pageURL).utf8().data());
291 String pageURL = String::fromUTF8(pageURI);
294 WebCore::Image* icon = WebCore::iconDatabase().synchronousIconForPageURL(pageURL, WebCore::IntSize(16, 16));
  /external/webkit/Source/WebKit/win/
WebIconDatabase.cpp 336 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
339 m_notificationQueue.append(pageURL.threadsafeCopy());
343 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL)
346 didImportIconURLForPageURL(pageURL);
349 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL)
352 didImportIconURLForPageURL(pageURL);
394 static void postDidAddIconNotification(const String& pageURL, WebIconDatabase* iconDB)
399 RetainPtr<CFStringRef> url(AdoptCF, pageURL.createCFString());
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.cpp 89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
95 mNotifications.append(pageURL);
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL)
106 didImportIconURLForPageURL(pageURL);
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL)
112 didImportIconURLForPageURL(pageURL);
  /external/chromium/chrome/browser/ui/cocoa/
bug_report_window_controller.h 76 @property(nonatomic, copy) NSString* pageURL;
  /external/chromium/webkit/glue/
context_menu.cc 31 page_url(data.pageURL),
  /external/webkit/Source/WebCore/loader/icon/wince/
IconDatabaseWinCE.cpp 63 void IconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) {}
  /external/webkit/Source/WebKit/chromium/public/
WebContextMenuData.h 78 WebURL pageURL;
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 188 - (void)releaseIconForURL:(NSString *)pageURL
191 ASSERT(pageURL);
195 iconDatabase().releaseIconForPageURL(pageURL);
624 // First, we'll iterate through the PageURL->IconURL map
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionAPI.js 169 create: function(title, iconURL, pageURL, callback)
177 url: expandURL(pageURL)
  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 244 data.pageURL = urlFromFrame(m_webView->mainFrameImpl()->frame());

Completed in 334 milliseconds