/external/webkit/Source/WebKit/win/ |
D | WebIconDatabase.cpp | 49 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 …]
|
D | WebIconDatabase.h | 48 class WebIconDatabase : public IWebIconDatabase, public WebCore::IconDatabaseClient 51 static WebIconDatabase* createInstance(); 52 static WebIconDatabase* sharedWebIconDatabase(); 54 WebIconDatabase(); 55 ~WebIconDatabase(); 119 static WebIconDatabase* m_sharedWebIconDatabase;
|
D | ForEachCoClass.h | 49 macro(WebIconDatabase) \
|
D | ChangeLog-2009-06-16 | 2003 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/ |
D | WebIconDatabase.cpp | 42 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 …]
|
D | WebIconDatabaseClient.h | 35 class WebIconDatabase; variable 40 void didChangeIconForPageURL(WebIconDatabase*, WebURL*); 41 void didRemoveAllIcons(WebIconDatabase*);
|
D | WebIconDatabase.h | 55 class WebIconDatabase : public APIObject, public WebCore::IconDatabaseClient { 59 static PassRefPtr<WebIconDatabase> create(WebContext*); 60 virtual ~WebIconDatabase(); 99 WebIconDatabase(WebContext*);
|
D | WebIconDatabaseClient.cpp | 34 void WebIconDatabaseClient::didChangeIconForPageURL(WebIconDatabase* iconDatabase, WebURL* url) in didChangeIconForPageURL() 42 void WebIconDatabaseClient::didRemoveAllIcons(WebIconDatabase* iconDatabase) in didRemoveAllIcons()
|
D | WebContext.h | 52 class WebIconDatabase; variable 150 WebIconDatabase* iconDatabase() const { return m_iconDatabase.get(); } in iconDatabase() 252 RefPtr<WebIconDatabase> m_iconDatabase;
|
D | WebIconDatabase.messages.in | 23 messages -> WebIconDatabase {
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebIconDatabase.cpp | 80 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 …]
|
D | WebIconDatabase.h | 48 class WebIconDatabase : public WebCore::IconDatabaseClient { 50 WebIconDatabase() : mDeliveryRequested(false) {} in WebIconDatabase() function
|
/external/webkit/Source/WebKit2/WebProcess/IconDatabase/ |
D | WebIconDatabaseProxy.cpp | 67 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/ |
D | WebIconDatabasePrivate.h | 29 #import <WebKit/WebIconDatabase.h> 43 @interface WebIconDatabase (WebPendingPublic) 68 @interface WebIconDatabase (WebPrivate)
|
D | WebIconDatabase.h | 64 @interface WebIconDatabase : NSObject { 76 + (WebIconDatabase *)sharedIconDatabase;
|
D | WebIconDatabaseDelegate.h | 31 - (NSImage *)webIconDatabase:(WebIconDatabase *)webIconDatabase defaultIconForURL:(NSString *)URL w…
|
D | WebIconDatabaseInternal.h | 43 @interface WebIconDatabase (WebInternal)
|
D | WebIconDatabase.mm | 79 @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/ |
D | WebKit.order | 15 +[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 …]
|
D | ChangeLog-2007-10-14 | 495 * 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 …]
|
D | ChangeLog-2002-12-03 | 110 * 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/ |
D | WKIconDatabase.cpp | 36 return toAPI(WebIconDatabase::APIType); in WKIconDatabaseGetTypeID()
|
D | WKAPICast.h | 67 class WebIconDatabase; variable 97 WK_ADD_API_MAPPING(WKIconDatabaseRef, WebIconDatabase) in WK_ADD_API_MAPPING()
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebIconDatabaseClient.mm | 47 [[WebIconDatabase sharedIconDatabase] _sendDidRemoveAllIconsNotification]; 56 [[WebIconDatabase sharedIconDatabase] _sendNotificationForURL:pageURL];
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | IWebIconDatabase.idl | 36 @class WebIconDatabase 53 @interface WebIconDatabase : NSObject 67 + (WebIconDatabase *)sharedIconDatabase;
|