Changeset 181634 in webkit
- Timestamp:
- Mar 17, 2015, 4:43:12 AM (11 years ago)
- Location:
- releases/WebKitGTK/webkit-2.8/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
loader/icon/IconController.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
releases/WebKitGTK/webkit-2.8/Source/WebCore/ChangeLog
r181632 r181634 1 2015-03-16 Brady Eidson <beidson@apple.com> 2 3 Addressing additional review feedback after http://trac.webkit.org/changeset/181565 4 https://bugs.webkit.org/show_bug.cgi?id=142604 5 6 Reviewed by Darin Adler. 7 8 * loader/icon/IconController.cpp: 9 (WebCore::IconController::startLoader): Null check page() 10 11 2015-03-16 Brady Eidson <beidson@apple.com> 12 13 URLs visited during private browsing show up in WebpageIcons.db 14 rdar://problem/11254910 and https://bugs.webkit.org/show_bug.cgi?id=142733 15 16 Patch by Sam Weinig. Reviewed by Brady Eidson. 17 18 * loader/icon/IconController.cpp: 19 (WebCore::IconController::startLoader): Bail early here if the page is using an ephemeral session. 20 (WebCore::IconController::continueLoadWithDecision): Instead of here. 21 1 22 2015-03-16 Max Stepin <maxstepin@gmail.com> 2 23 -
releases/WebKitGTK/webkit-2.8/Source/WebCore/loader/icon/IconController.cpp
r170134 r181634 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() && 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.