Searched defs:IconDatabase (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/loader/icon/wince/
H A DIconDatabaseWinCE.cpp22 #include "IconDatabase.h"
34 static IconDatabase* sharedIconDatabase = 0;
37 IconDatabase& iconDatabase()
40 sharedIconDatabase = new IconDatabase;
44 IconDatabase::IconDatabase() {} function in class:WebCore::IconDatabase
45 IconDatabase::~IconDatabase() {}
47 void IconDatabase::setClient(IconDatabaseClient*) {}
49 bool IconDatabase
[all...]
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabase.h63 // For builds with IconDatabase disabled, they'll just use a default derivation of IconDatabaseBase. Which does nothing.
64 class IconDatabase : public IconDatabaseBase { class in namespace:WebCore
71 class IconDatabase : public IconDatabaseBase { class in namespace:WebCore
76 static PassOwnPtr<IconDatabase> create() { return new IconDatabase; }
77 ~IconDatabase();
117 IconDatabase();
125 void syncTimerFired(Timer<IconDatabase>*);
127 Timer<IconDatabase> m_syncTimer;
H A DIconDatabase.cpp28 #include "IconDatabase.h"
107 void IconDatabase::setClient(IconDatabaseClient* client)
120 bool IconDatabase::open(const String& directory, const String& filename)
128 LOG_ERROR("Attempt to reopen the IconDatabase which is already open. Must close it first.");
140 m_syncThread = createThread(IconDatabase::iconDatabaseSyncThreadStart, this, "WebCore: IconDatabase");
148 void IconDatabase::close()
176 void IconDatabase::removeAllIcons()
183 LOG(IconDatabase, "Requesting background thread to remove all icons");
220 Image* IconDatabase
765 IconDatabase::IconDatabase() function in class:WebCore::IconDatabase
[all...]

Completed in 124 milliseconds