Lines Matching refs:WebIconDatabase
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'
2022 ...\webkit\win\WebIconDatabase.h(51) : see declaration of 'WebIconDatabase'
2023 …..\WebIconDatabase.cpp(255) : error C2352: 'WebIconDatabase::shutDownIconDatabase' : illegal call …
2024 … ...\webkit\win\WebIconDatabase.h(61) : see declaration of 'WebIconDatabase::shutDownIconDatabase'
2025 …..\WebIconDatabase.cpp(258) : error C2248: 'WebIconDatabase::startUpIconDatabase' : cannot access …
2026 … ...\webkit\win\WebIconDatabase.h(60) : see declaration of 'WebIconDatabase::startUpIconDatabase'
2027 ...\webkit\win\WebIconDatabase.h(51) : see declaration of 'WebIconDatabase'
2028 …..\WebIconDatabase.cpp(258) : error C2352: 'WebIconDatabase::startUpIconDatabase' : illegal call o…
2029 … ...\webkit\win\WebIconDatabase.h(60) : see declaration of 'WebIconDatabase::startUpIconDatabase'
2031 * WebIconDatabase.cpp:
2032 (setEnabled): Get instance of shared WebIconDatabase, then call
2034 * WebIconDatabase.h:
2035 (WebIconDatabase::startUpIconDatabase): Make protected again.
2036 (WebIconDatabase::shutDownIconDatabase): Ditto.
2044 WebIconDatabase.cpp
2045 ..\WebIconDatabase.cpp(255) : error C3861: 'shutDownIconDatabase': identifier not found
2046 ..\WebIconDatabase.cpp(258) : error C3861: 'startUpIconDatabase': identifier not found
2048 * WebIconDatabase.cpp:
2051 * WebIconDatabase.h:
2052 (WebIconDatabase::startUpIconDatabase): Make private again.
2053 (WebIconDatabase::shutDownIconDatabase): Ditto.
2061 WebIconDatabase.cpp
2062 ..\WebIconDatabase.cpp(255) : error C3861: 'shutDownIconDatabase': identifier not found
2063 ..\WebIconDatabase.cpp(258) : error C3861: 'startUpIconDatabase': identifier not found
2065 * WebIconDatabase.h:
2066 (WebIconDatabase::startUpIconDatabase): Make protected.
2067 (WebIconDatabase::shutDownIconDatabase): Ditto.
2075 WebIconDatabase.cpp
2076 ..\WebIconDatabase.cpp(85) : error C2065: 'standardPrefs' : undeclared identifier
2077 …..\WebIconDatabase.cpp(85) : error C2227: left of '->iconDatabaseLocation' must point to class/str…
2079 …..\WebIconDatabase.cpp(241) : error C2575: 'isEnabled' : only member functions and bases can be vi…
2080 …..\WebIconDatabase.cpp(248) : error C2575: 'setEnabled' : only member functions and bases can be v…
2081 ..\WebIconDatabase.cpp(253) : error C3861: 'shutDownIconDatabase': identifier not found
2082 ..\WebIconDatabase.cpp(256) : error C3861: 'startUpIconDatabase': identifier not found
2084 * WebIconDatabase.cpp:
2085 (WebIconDatabase::startUpIconDatabase): Redeclare standardPrefs
2101 Add API to enable, disable and check state of WebIconDatabase
2105 Add WebIconDatabase::isEnabled() and WebIconDatabase::setEnabled()
2111 * WebIconDatabase.cpp:
2112 (WebIconDatabase::init): Extracted code into startUpIconDatabase().
2113 (WebIconDatabase::startUpIconDatabase): Added. Extracted from
2115 (WebIconDatabase::shutDownIconDatabase): Added. Method is empty
2119 * WebIconDatabase.h: Added method declarations.
3628 * WebIconDatabase.cpp: (WebIconDatabase::getOrCreateDefaultIconBitmap):
3637 the usage of this icon from WebKitDLL.cpp and change WebIconDatabase
3641 * WebIconDatabase.cpp:
3642 (WebIconDatabase::getOrCreateDefaultIconBitmap): Use the icon from the
3850 * WebIconDatabase.cpp:
3851 (WebIconDatabase::getOrCreateDefaultIconBitmap):
5490 * WebIconDatabase.cpp: Updated #include
5631 * WebIconDatabase.cpp:
5632 (WebIconDatabase::iconForURL):
5638 * WebIconDatabase.cpp:
5639 (WebIconDatabase::iconForURL): Adjust to changed iconForPageURL
6965 * WebIconDatabase.cpp:
6966 * WebIconDatabase.h:
7173 <rdar://problem/5740656> Leak in postDidAddIconNotification in WebIconDatabase
7177 * WebIconDatabase.cpp:
7311 * WebIconDatabase.h:
7412 * WebIconDatabase.cpp:
7413 (WebIconDatabase::scheduleNotificationDelivery): Updated for new callOnMainThread.
7414 (WebIconDatabase::deliverNotifications): Ditto.
7415 * WebIconDatabase.h: Ditto.
8253 * WebIconDatabase.h:
10312 * WebIconDatabase.cpp: Removed a now-unused function and a fixed
10314 (WebIconDatabase::init): Changed to use FileSystem functions.
10393 * WebIconDatabase.cpp:
10394 (WebIconDatabase::scheduleNotificationDelivery):
10528 … Implement WebIconDatabase::delayDatabaseCleanup() and WebIconDatabase::allowDatabaseCleanup().
10532 * WebIconDatabase.cpp:
10533 (WebIconDatabase::delayDatabaseCleanup):
10534 (WebIconDatabase::allowDatabaseCleanup):
10558 * WebIconDatabase.cpp:
10559 (WebIconDatabase::iconURLForURL):
10560 * WebIconDatabase.h:
10751 * WebIconDatabase.cpp:
10752 …(WebIconDatabase::iconForURL): If the URL is NULL, fallback to the default icon without asking Web…
10831 * WebIconDatabase.cpp:
10832 (WebIconDatabase::iconForURL): Call getHBITMAPOfSize
10833 (WebIconDatabase::getOrCreateDefaultIconBitmap): Ditto
10864 * WebIconDatabase.cpp:
10865 (WebIconDatabase::iconDatabaseDidAddIconNotification):
10866 (WebIconDatabase::iconDatabaseNotificationUserInfoURLKey):
10867 (WebIconDatabase::iconDatabaseDidRemoveAllIconsNotification):
10870 * WebIconDatabase.h:
10891 * WebIconDatabase.cpp:
10892 (WebIconDatabase::WebIconDatabase): Initialize m_deliveryRequested
10893 (WebIconDatabase::init): Set the IconDatabaseClient to the shared WebIconDatabase
10894 …(WebIconDatabase::dispatchDidRemoveAllIcons): Queue the notification to be delivered on the main t…
10896 (WebIconDatabase::dispatchDidAddIconForPageURL): Ditto
10897 …(WebIconDatabase::scheduleNotificationDelivery): If the m_deliveryRequested hasn't been set, then …
10898 and perform the callOnMainThread() for WebIconDatabase::deliverNotifications
10901 (WebIconDatabase::deliverNotifications): Deliver all notifications in the current queue
10902 * WebIconDatabase.h:
12633 * WebIconDatabase.cpp:
12634 (WebIconDatabase::init): Ditto.
13637 * WebIconDatabase.cpp:
13638 * WebIconDatabase.h:
13716 * WebIconDatabase.cpp:
13717 (WebIconDatabase::init): fixed a missing Release on standardPrefs by using COMPtr.
14186 * WebIconDatabase.cpp:
14187 (WebIconDatabase::iconForURL):
14188 (WebIconDatabase::defaultIconWithSize):
14189 * WebIconDatabase.h:
15011 * WebIconDatabase.cpp:
15112 * WebIconDatabase.cpp:
18866 * WebIconDatabase.cpp:
18867 …(WebIconDatabase::iconForURL): Check the width() as an additional case to fallback to the default …
19457 * WebIconDatabase.cpp:
19458 (WebIconDatabase::removeAllIcons): Added
19459 * WebIconDatabase.h:
19723 * WebIconDatabase.cpp:
19920 * WebIconDatabase.cpp:
19921 * WebIconDatabase.h:
19944 No need for WebIconDatabase to keep its own reference to the
19947 * WebIconDatabase.cpp:
19948 (WebIconDatabase::WebIconDatabase):
19949 (WebIconDatabase::init):
19950 (WebIconDatabase::iconForURL):
19951 (WebIconDatabase::retainIconForURL):
19952 (WebIconDatabase::releaseIconForURL):
19953 * WebIconDatabase.h:
20584 * WebIconDatabase.h:
20646 (WebHistoryItem::WebHistoryItem): Don't hold a reference to the WebIconDatabase
20647 * WebIconDatabase.cpp:
20648 (WebIconDatabase::~WebIconDatabase): Delete core icon db on delete
21043 * WebIconDatabase.cpp:
21044 … (WebIconDatabase::init): Get the location from the prefs, fallback to the default via shell call
21471 * WebIconDatabase.cpp:
21472 (WebIconDatabase::sharedWebIconDatabase): Added - for the shared WebIconDatabase object
21473 …(WebIconDatabase::sharedIconDatabase): Changed to return the shared WebIconDatabase as the shared …
21474 * WebIconDatabase.h:
21501 Disabled WebIconDatabase for now until I can figure out the crash...!
21722 * WebIconDatabase.cpp:
21723 (WebIconDatabase::init):
21737 * WebIconDatabase.cpp:
21738 (WebIconDatabase::init):
21840 Made changes to IWebIconDatabase and implemented it in WebIconDatabase
21843 * WebIconDatabase.cpp:
21844 (WebIconDatabase::WebIconDatabase):
21846 (WebIconDatabase::init): Initialize the WebCore::IconDatabase
21847 (WebIconDatabase::sharedIconDatabase): Get the shared IWebIconDatabase
21848 (WebIconDatabase::iconForURL): Implemented
21849 (WebIconDatabase::defaultIconWithSize): Ditto
21850 (WebIconDatabase::retainIconForURL): Ditto
21851 (WebIconDatabase::releaseIconForURL): Ditto
21853 …(WebIconDatabase::getOrCreateSharedBitmap): Get a "shared" bitmap from the hash, or create and sto…
21854 (WebIconDatabase::getOrCreateDefaultIconBitmap): Ditto for the Default Icons HBITMAPs
21855 * WebIconDatabase.h:
23488 * WebIconDatabase.cpp: Added.
23489 (WebIconDatabase::WebIconDatabase):
23490 (WebIconDatabase::~WebIconDatabase):
23491 (WebIconDatabase::createInstance):
23492 (WebIconDatabase::QueryInterface):
23493 (WebIconDatabase::AddRef):
23494 (WebIconDatabase::Release):
23495 (WebIconDatabase::sharedIconDatabase):
23496 (WebIconDatabase::iconForURL):
23497 (WebIconDatabase::defaultIconWithSize):
23498 (WebIconDatabase::retainIconForURL):
23499 (WebIconDatabase::releaseIconForURL):
23500 (WebIconDatabase::delayDatabaseCleanup):
23501 (WebIconDatabase::allowDatabaseCleanup):
23502 * WebIconDatabase.h: Added.