Changeset 90486 in webkit
- Timestamp:
- Jul 6, 2011, 1:27:32 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
loader/icon/IconDatabase.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r90485 r90486 1 2011-07-06 John Sullivan <sullivan@apple.com> 2 3 IconDatabase::synchronousIconForPageURL() has inconsistent API when no custom icon is available 4 <https://bugs.webkit.org/show_bug.cgi?id=64015> 5 <rdar://problem/9706277> 6 7 For some URLs it would return a particular size of default icon; for other 8 URLs it would return 0. 9 10 Reviewed by Ada Chan. 11 12 * loader/icon/IconDatabase.cpp: 13 (WebCore::IconDatabase::synchronousIconForPageURL): 14 Return 0 in all cases where there is no custom icon. 15 1 16 2011-07-06 Emil A Eklund <eae@chromium.org> 2 17 -
trunk/Source/WebCore/loader/icon/IconDatabase.cpp
r89708 r90486 225 225 226 226 if (!isOpen() || !pageCanHaveIcon(pageURLOriginal)) 227 return defaultIcon(size);227 return 0; 228 228 229 229 MutexLocker locker(m_urlAndIconLock);
Note:
See TracChangeset
for help on using the changeset viewer.