Searched refs:WebIconDatabase (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/WebKit/mac/Misc/
H A DWebIconDatabasePrivate.h29 #import <WebKit/WebIconDatabase.h>
32 // either inside WebIconDatabase.mm, or to WebIconDatabaseInternal.h.
43 @interface WebIconDatabase (WebPendingPublic)
68 @interface WebIconDatabase (WebPrivate)
H A DWebIconDatabaseDelegate.h31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL withSize:(NSSize)size;
H A DWebIconDatabaseInternal.h43 @interface WebIconDatabase (WebInternal)
H A DWebIconDatabase.h48 @class WebIconDatabase
64 @interface WebIconDatabase : NSObject {
76 + (WebIconDatabase *)sharedIconDatabase;
H A DWebIconDatabase.mm79 @interface WebIconDatabase (WebReallyInternal)
91 @implementation WebIconDatabase
99 + (WebIconDatabase *)sharedIconDatabase
101 static WebIconDatabase *database = nil;
103 database = [[WebIconDatabase alloc] init];
226 @implementation WebIconDatabase (WebPendingPublic)
257 @implementation WebIconDatabase (WebPrivate)
266 @implementation WebIconDatabase (WebInternal)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebIconDatabaseClient.h35 class WebIconDatabase;
40 void didChangeIconForPageURL(WebIconDatabase*, WebURL*);
41 void didRemoveAllIcons(WebIconDatabase*);
H A DWebIconDatabase.cpp27 #include "WebIconDatabase.h"
42 PassRefPtr<WebIconDatabase> WebIconDatabase::create(WebContext* context)
44 return adoptRef(new WebIconDatabase(context));
47 WebIconDatabase::~WebIconDatabase()
51 WebIconDatabase::WebIconDatabase(WebContext* context) function in class:WebKit::WebIconDatabase
58 void WebIconDatabase::invalidate()
62 void WebIconDatabase
[all...]
H A DWebIconDatabaseClient.cpp34 void WebIconDatabaseClient::didChangeIconForPageURL(WebIconDatabase* iconDatabase, WebURL* url)
42 void WebIconDatabaseClient::didRemoveAllIcons(WebIconDatabase* iconDatabase)
H A DWebIconDatabase.h55 class WebIconDatabase : public APIObject, public WebCore::IconDatabaseClient { class in namespace:WebKit
59 static PassRefPtr<WebIconDatabase> create(WebContext*);
60 virtual ~WebIconDatabase();
99 WebIconDatabase(WebContext*);
H A DWebContext.h52 class WebIconDatabase;
150 WebIconDatabase* iconDatabase() const { return m_iconDatabase.get(); }
252 RefPtr<WebIconDatabase> m_iconDatabase;
H A DWebContext.cpp44 #include "WebIconDatabase.h"
121 , m_iconDatabase(WebIconDatabase::create(this))
/external/webkit/Source/WebKit/win/
H A DWebIconDatabase.cpp28 #include "WebIconDatabase.h"
47 // WebIconDatabase ----------------------------------------------------------------
49 WebIconDatabase* WebIconDatabase::m_sharedWebIconDatabase = 0;
51 WebIconDatabase::WebIconDatabase() function in class:WebIconDatabase
56 gClassNameCount.add("WebIconDatabase");
59 WebIconDatabase::~WebIconDatabase()
62 gClassNameCount.remove("WebIconDatabase");
[all...]
H A DWebIconDatabase.h48 class WebIconDatabase : public IWebIconDatabase, public WebCore::IconDatabaseClient class in inherits:IWebIconDatabase,WebCore::IconDatabaseClient
51 static WebIconDatabase* createInstance();
52 static WebIconDatabase* sharedWebIconDatabase();
54 WebIconDatabase();
55 ~WebIconDatabase();
119 static WebIconDatabase* m_sharedWebIconDatabase;
H A DForEachCoClass.h49 macro(WebIconDatabase) \
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebIconDatabaseClient.mm47 [[WebIconDatabase sharedIconDatabase] _sendDidRemoveAllIconsNotification];
56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
H A DWebIconDatabaseProxy.cpp67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0);
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0);
78 if (!m_process->connection()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messages::WebIconDatabase::SynchronousIconDataForPageURL::Reply(result), 0))
117 m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0);
133 m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0);
139 m_process->connection()->send(Messages::WebIconDatabase::SetIconDataForIconURL(data, iconURL), 0);
/external/webkit/Source/WebKit/android/jni/
H A DWebIconDatabase.cpp29 #include "WebIconDatabase.h"
80 static WebIconDatabase* gIconDatabaseClient = new WebIconDatabase();
82 bool WebIconDatabase::performImport()
89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL)
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL)
115 void WebIconDatabase::didRemoveAllIcons()
119 void WebIconDatabase::didFinishURLImport()
124 void WebIconDatabase
[all...]
H A DWebIconDatabase.h48 class WebIconDatabase : public WebCore::IconDatabaseClient { class in namespace:android
50 WebIconDatabase() : mDeliveryRequested(false) {} function in class:android::WebIconDatabase
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKIconDatabase.cpp30 #include "WebIconDatabase.h"
36 return toAPI(WebIconDatabase::APIType);
H A DWKAPICast.h67 class WebIconDatabase;
97 WK_ADD_API_MAPPING(WKIconDatabaseRef, WebIconDatabase)
/external/webkit/Source/WebKit/win/Interfaces/
H A DWebKit.idl170 coclass WebIconDatabase {
/external/webkit/Source/WebKit/
H A DAndroid.mk77 android/jni/WebIconDatabase.cpp \
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DFrameLoaderClientAndroid.cpp74 #include "WebIconDatabase.h"
1353 WebIconDatabase::RegisterForIconNotification(this);
1355 WebIconDatabase::UnregisterForIconNotification(this);
/external/webkit/Tools/DumpRenderTree/mac/
H A DLayoutTestControllerMac.mm458 static WebIconDatabase* sharedWebIconDatabase = NULL;
462 sharedWebIconDatabase = [WebIconDatabase sharedIconDatabase];
/external/webkit/Source/WebKit/mac/History/
H A DWebHistoryItem.mm35 #import "WebIconDatabase.h"
187 return [[WebIconDatabase sharedIconDatabase] iconForURL:[self URLString] withSize:WebIconSmallSize];

Completed in 191 milliseconds

12