Home | History | Annotate | Download | only in icon

Lines Matching defs:iconDatabase

27 #include "IconDatabase.h"
29 #if !ENABLE(ICONDATABASE)
37 static IconDatabase* sharedIconDatabase = 0;
53 String IconDatabase::defaultDatabaseFilename()
59 IconDatabase* iconDatabase()
62 sharedIconDatabase = new IconDatabase;
66 IconDatabase::IconDatabase()
70 bool IconDatabase::open(const String& /*databasePath*/)
75 bool IconDatabase::isOpen() const
80 void IconDatabase::close()
84 String IconDatabase::databasePath() const
89 void IconDatabase::removeAllIcons()
93 void IconDatabase::setPrivateBrowsingEnabled(bool /*flag*/)
97 bool IconDatabase::isPrivateBrowsingEnabled() const
102 void IconDatabase::readIconForPageURLFromDisk(const String&)
107 Image* IconDatabase::iconForPageURL(const String& /*pageURL*/, const IntSize& size)
113 IconLoadDecision IconDatabase::loadDecisionForIconURL(const String&, DocumentLoader*)
118 bool IconDatabase::iconDataKnownForIconURL(const String&)
123 String IconDatabase::iconURLForPageURL(const String& /*pageURL*/)
128 Image* IconDatabase::defaultIcon(const IntSize& /*size*/)
133 void IconDatabase::retainIconForPageURL(const String& /*pageURL*/)
137 void IconDatabase::releaseIconForPageURL(const String& /*pageURL*/)
141 void IconDatabase::setIconDataForIconURL(PassRefPtr<SharedBuffer> /*data*/, const String& /*iconURL*/)
145 void IconDatabase::setIconURLForPageURL(const String& /*iconURL*/, const String& /*pageURL*/)
149 void IconDatabase::setEnabled(bool /*enabled*/)
153 bool IconDatabase::isEnabled() const
158 IconDatabase::~IconDatabase()
163 void IconDatabase::checkIntegrityBeforeOpening()
167 void IconDatabase::delayDatabaseCleanup()
171 void IconDatabase::allowDatabaseCleanup()
175 size_t IconDatabase::pageURLMappingCount()
180 size_t IconDatabase::retainedPageURLCount()
185 size_t IconDatabase::iconRecordCount()
190 size_t IconDatabase::iconRecordCountWithData()
195 void IconDatabase::setClient(IconDatabaseClient*)
203 void IconDatabase::importIconURLForPageURL(const String&, const String&)
207 void IconDatabase::importIconDataForIconURL(PassRefPtr<SharedBuffer>, const String&)
211 bool IconDatabase::shouldStopThreadActivity() const
218 #endif // !ENABLE(ICONDATABASE)