Home
last modified time | relevance | path

Searched refs:WebIconDatabase (Results 1 – 25 of 49) sorted by relevance

12

/external/webkit/Source/WebKit/win/
DWebIconDatabase.cpp49 WebIconDatabase* WebIconDatabase::m_sharedWebIconDatabase = 0;
51 WebIconDatabase::WebIconDatabase() in WebIconDatabase() function in WebIconDatabase
59 WebIconDatabase::~WebIconDatabase() in ~WebIconDatabase()
65 void WebIconDatabase::init() in init()
80 void WebIconDatabase::startUpIconDatabase() in startUpIconDatabase()
103 void WebIconDatabase::shutDownIconDatabase() in shutDownIconDatabase()
107 WebIconDatabase* WebIconDatabase::createInstance() in createInstance()
109 WebIconDatabase* instance = new WebIconDatabase(); in createInstance()
114 WebIconDatabase* WebIconDatabase::sharedWebIconDatabase() in sharedWebIconDatabase()
127 HRESULT STDMETHODCALLTYPE WebIconDatabase::QueryInterface(REFIID riid, void** ppvObject) in QueryInterface()
[all …]
DWebIconDatabase.h48 class WebIconDatabase : public IWebIconDatabase, public WebCore::IconDatabaseClient
51 static WebIconDatabase* createInstance();
52 static WebIconDatabase* sharedWebIconDatabase();
54 WebIconDatabase();
55 ~WebIconDatabase();
119 static WebIconDatabase* m_sharedWebIconDatabase;
DForEachCoClass.h49 macro(WebIconDatabase) \
DChangeLog-2009-06-162003 BUILD FIX (r39641): Try to fix WebIconDatabase build errors #4
2005 * WebIconDatabase.cpp:
2006 (WebIconDatabase::isEnabled): Added 'WebIconDatabase::' to method
2008 (WebIconDatabase::setEnabled): Ditto.
2009 * WebIconDatabase.h:
2010 (WebIconDatabase::startUpIconDatabase): Make private again.
2011 (WebIconDatabase::shutDownIconDatabase): Ditto.
2019 WebIconDatabase.cpp
2020 …..\WebIconDatabase.cpp(255) : error C2248: 'WebIconDatabase::shutDownIconDatabase' : cannot access…
2021 … ...\webkit\win\WebIconDatabase.h(61) : see declaration of 'WebIconDatabase::shutDownIconDatabase'
[all …]
/external/webkit/Source/WebKit2/UIProcess/
DWebIconDatabase.cpp42 PassRefPtr<WebIconDatabase> WebIconDatabase::create(WebContext* context) in create()
44 return adoptRef(new WebIconDatabase(context)); in create()
47 WebIconDatabase::~WebIconDatabase() in ~WebIconDatabase()
51 WebIconDatabase::WebIconDatabase(WebContext* context) in WebIconDatabase() function in WebKit::WebIconDatabase
58 void WebIconDatabase::invalidate() in invalidate()
62 void WebIconDatabase::setDatabasePath(const String& path) in setDatabasePath()
84 void WebIconDatabase::enableDatabaseCleanup() in enableDatabaseCleanup()
101 void WebIconDatabase::retainIconForPageURL(const String& pageURL) in retainIconForPageURL()
107 void WebIconDatabase::releaseIconForPageURL(const String& pageURL) in releaseIconForPageURL()
113 void WebIconDatabase::setIconURLForPageURL(const String& iconURL, const String& pageURL) in setIconURLForPageURL()
[all …]
DWebIconDatabaseClient.h35 class WebIconDatabase; variable
40 void didChangeIconForPageURL(WebIconDatabase*, WebURL*);
41 void didRemoveAllIcons(WebIconDatabase*);
DWebIconDatabase.h55 class WebIconDatabase : public APIObject, public WebCore::IconDatabaseClient {
59 static PassRefPtr<WebIconDatabase> create(WebContext*);
60 virtual ~WebIconDatabase();
99 WebIconDatabase(WebContext*);
DWebIconDatabaseClient.cpp34 void WebIconDatabaseClient::didChangeIconForPageURL(WebIconDatabase* iconDatabase, WebURL* url) in didChangeIconForPageURL()
42 void WebIconDatabaseClient::didRemoveAllIcons(WebIconDatabase* iconDatabase) in didRemoveAllIcons()
DWebContext.h52 class WebIconDatabase; variable
150 WebIconDatabase* iconDatabase() const { return m_iconDatabase.get(); } in iconDatabase()
252 RefPtr<WebIconDatabase> m_iconDatabase;
DWebIconDatabase.messages.in23 messages -> WebIconDatabase {
/external/webkit/Source/WebKit/android/jni/
DWebIconDatabase.cpp80 static WebIconDatabase* gIconDatabaseClient = new WebIconDatabase();
82 bool WebIconDatabase::performImport() in performImport()
89 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL) in didImportIconURLForPageURL()
103 void WebIconDatabase::didImportIconDataForPageURL(const WTF::String& pageURL) in didImportIconDataForPageURL()
109 void WebIconDatabase::didChangeIconForPageURL(const WTF::String& pageURL) in didChangeIconForPageURL()
115 void WebIconDatabase::didRemoveAllIcons() in didRemoveAllIcons()
119 void WebIconDatabase::didFinishURLImport() in didFinishURLImport()
124 void WebIconDatabase::RegisterForIconNotification(WebIconDatabaseClient* client) in RegisterForIconNotification()
126 WebIconDatabase* db = gIconDatabaseClient; in RegisterForIconNotification()
136 void WebIconDatabase::UnregisterForIconNotification(WebIconDatabaseClient* client) in UnregisterForIconNotification()
[all …]
DWebIconDatabase.h48 class WebIconDatabase : public WebCore::IconDatabaseClient {
50 WebIconDatabase() : mDeliveryRequested(false) {} in WebIconDatabase() function
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/
DWebIconDatabaseProxy.cpp67 m_process->connection()->send(Messages::WebIconDatabase::RetainIconForPageURL(pageURL), 0); in retainIconForPageURL()
72 m_process->connection()->send(Messages::WebIconDatabase::ReleaseIconForPageURL(pageURL), 0); in releaseIconForPageURL()
78 …->connection()->sendSync(Messages::WebIconDatabase::SynchronousIconDataForPageURL(pageURL), Messag… in synchronousIconForPageURL()
117 …m_process->connection()->send(Messages::WebIconDatabase::GetLoadDecisionForIconURL(iconURL, id), 0… in loadDecisionForIconURL()
133 …m_process->connection()->send(Messages::WebIconDatabase::SetIconURLForPageURL(iconURL, pageURL), 0… in setIconURLForPageURL()
139 … m_process->connection()->send(Messages::WebIconDatabase::SetIconDataForIconURL(data, iconURL), 0); in setIconDataForIconURL()
/external/webkit/Source/WebKit/mac/Misc/
DWebIconDatabasePrivate.h29 #import <WebKit/WebIconDatabase.h>
43 @interface WebIconDatabase (WebPendingPublic)
68 @interface WebIconDatabase (WebPrivate)
DWebIconDatabase.h64 @interface WebIconDatabase : NSObject {
76 + (WebIconDatabase *)sharedIconDatabase;
DWebIconDatabaseDelegate.h31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL w…
DWebIconDatabaseInternal.h43 @interface WebIconDatabase (WebInternal)
DWebIconDatabase.mm79 @interface WebIconDatabase (WebReallyInternal) interface in WebReallyInternal
91 @implementation WebIconDatabase implementation
99 + (WebIconDatabase *)sharedIconDatabase
101 static WebIconDatabase *database = nil;
103 database = [[WebIconDatabase alloc] init];
226 @implementation WebIconDatabase (WebPendingPublic) implementation in WebPendingPublic
257 @implementation WebIconDatabase (WebPrivate) implementation in WebPrivate
266 @implementation WebIconDatabase (WebInternal) implementation in WebInternal
/external/webkit/Source/WebKit/mac/
DWebKit.order15 +[WebIconDatabase initialize]
16 +[WebIconDatabase delayDatabaseCleanup]
17 +[WebIconDatabase sharedIconDatabase]
18 -[WebIconDatabase init]
19 -[WebIconDatabase(WebInternal) _startUpIconDatabase]
21 -[WebIconDatabase(WebInternal) _databaseDirectory]
42 -[WebIconDatabase retainIconForURL:]
43 -[WebIconDatabase(WebPendingPublic) isEnabled]
44 +[WebIconDatabase allowDatabaseCleanup]
221 -[WebIconDatabase(WebInternal) _resetCachedWebPreferences:]
[all …]
DChangeLog-2007-10-14495 * Misc/WebIconDatabase.h:
496 * Misc/WebIconDatabase.mm:
498 (-[WebIconDatabase init]):
499 …(+[WebIconDatabase delayDatabaseCleanup]): Accessor so clients can prevent the thread from cleanin…
501 (+[WebIconDatabase allowDatabaseCleanup]):
502 (-[WebIconDatabase removeAllIcons]):
503 (-[WebIconDatabase _isEnabled]):
504 (-[WebIconDatabase _sendNotificationForURL:]):
505 (-[WebIconDatabase _sendDidRemoveAllIconsNotification]):
506 (-[WebIconDatabase _databaseDirectory]):
[all …]
DChangeLog-2002-12-03110 * Misc.subproj/WebIconDatabase.m:
111 (-[WebIconDatabase _updateFileDatabase]):
112 (-[WebIconDatabase _setIconURL:forSiteURL:]):
397 * Misc.subproj/WebIconDatabase.m:
398 (-[WebIconDatabase _setIconURL:forSiteURL:]):
495 * Misc.subproj/WebIconDatabase.m:
496 (-[WebIconDatabase _loadIconDictionaries]): tweak
497 (-[WebIconDatabase _updateFileDatabase]): more error checking to prevent assert
498 …(-[WebIconDatabase _setIconURL:forSiteURL:]): added asserts to prevent a site URL <-> icon URL map…
499 (-[WebIconDatabase _largestIconFromDictionary:]): tweak
[all …]
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKIconDatabase.cpp36 return toAPI(WebIconDatabase::APIType); in WKIconDatabaseGetTypeID()
DWKAPICast.h67 class WebIconDatabase; variable
97 WK_ADD_API_MAPPING(WKIconDatabaseRef, WebIconDatabase) in WK_ADD_API_MAPPING()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebIconDatabaseClient.mm47 [[WebIconDatabase sharedIconDatabase] _sendDidRemoveAllIconsNotification];
56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
/external/webkit/Source/WebKit/win/Interfaces/
DIWebIconDatabase.idl36 @class WebIconDatabase
53 @interface WebIconDatabase : NSObject
67 + (WebIconDatabase *)sharedIconDatabase;

12