RESOLVED WONTFIX 106348
Plug-ins shouldn’t be added to list to autostart if you start a plugin in private browsing
https://bugs.webkit.org/show_bug.cgi?id=106348
Summary Plug-ins shouldn’t be added to list to autostart if you start a plugin in pri...
Brian Weinstein
Reported 2013-01-08 10:54:27 PST
Plug-ins shouldn’t be added to list to autostart if you start a plugin in private browsing <rdar://problem/12968442>
Attachments
Fix (2.38 KB, patch)
2013-01-08 10:58 PST, Brian Weinstein
andersca: review+
Brian Weinstein
Comment 1 2013-01-08 10:58:40 PST
Anders Carlsson
Comment 2 2013-01-08 12:17:28 PST
Comment on attachment 181709 [details] Fix View in context: https://bugs.webkit.org/attachment.cgi?id=181709&action=review > Source/WebCore/html/HTMLPlugInImageElement.cpp:271 > - if (document()->page()) > + if (document()->page() && document()->settings() && !document()->settings()->privateBrowsingEnabled()) > document()->page()->plugInClient()->addAutoStartOrigin(document()->page()->mainFrame()->document()->baseURL().host(), m_plugInOriginHash); I don't think you need to null check document()->settings() here since settings can only be null if page is null. I think this'd read better as if (Page* page = document->page()) { if (!settings->privateBrowsingEnabled()) page->plugInClient()-> etc etc }
Brian Weinstein
Comment 3 2013-01-08 12:47:24 PST
WebKit Review Bot
Comment 4 2013-01-08 12:58:09 PST
Re-opened since this is blocked by bug 106367
Note You need to log in before you can comment on or make changes to this bug.