Changeset 181565 in webkit
- Timestamp:
- Mar 16, 2015, 10:52:30 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
loader/icon/IconController.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r181562 r181565 1 2015-03-16 Brady Eidson <beidson@apple.com> 2 3 URLs visited during private browsing show up in WebpageIcons.db 4 rdar://problem/11254910 and https://bugs.webkit.org/show_bug.cgi?id=142733 5 6 Patch by Sam Weinig. Reviewed by Brady Eidson. 7 8 * loader/icon/IconController.cpp: 9 (WebCore::IconController::startLoader): Bail early here if the page is using an ephemeral session. 10 (WebCore::IconController::continueLoadWithDecision): Instead of here. 11 1 12 2015-03-16 Conrad Shultz <conrad_shultz@apple.com> 2 13 -
trunk/Source/WebCore/loader/icon/IconController.cpp
r170134 r181565 161 161 162 162 if (iconDatabase().supportsAsynchronousMode()) { 163 // FIXME (<rdar://problem/9168605>) - We should support in-memory-only private browsing icons in asynchronous icon database mode. 164 if (m_frame.page()->usesEphemeralSession()) 165 return; 166 163 167 m_frame.loader().documentLoader()->getIconLoadDecisionForIconURL(urlString); 164 168 // Commit the icon url mapping to the database just in case we don't end up loading later. … … 203 207 { 204 208 ASSERT(iconLoadDecision != IconLoadUnknown); 205 206 // FIXME (<rdar://problem/9168605>) - We should support in-memory-only private browsing icons in asynchronous icon database mode.207 if (iconDatabase().supportsAsynchronousMode() && m_frame.page()->usesEphemeralSession())208 return;209 209 210 210 if (iconLoadDecision == IconLoadNo) {
Note:
See TracChangeset
for help on using the changeset viewer.