Bug 208793

Summary: Revise In-App Browser Privacy checks to better reflect the meaning of the flag
Product: WebKit Reporter: Brent Fulgham <bfulgham>
Component: WebKit Misc.Assignee: Brent Fulgham <bfulgham>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, cdumez, commit-queue, webkit-bug-importer, wilander
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 208818    
Attachments:
Description Flags
Patch none

Brent Fulgham
Reported 2020-03-08 16:46:55 PDT
The 'isInAppBrowserPrivacyEnabled' seems like a feature, but it's really an internal debugging flag. Revise the use of these calls to make it clearer.
Attachments
Patch (3.42 KB, patch)
2020-03-08 16:50 PDT, Brent Fulgham
no flags
Radar WebKit Bug Importer
Comment 1 2020-03-08 16:47:54 PDT
Brent Fulgham
Comment 2 2020-03-08 16:50:59 PDT
John Wilander
Comment 3 2020-03-08 16:56:45 PDT
Comment on attachment 393000 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=393000&action=review r=me with one comment. > Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm:1219 > + if (m_isInAppBrowserPrivacyEnabled || NETWORK_SESSION_COCOA_ADDITIONS) Is there a reason for doing this is two if clauses and not if (isNavigatingToAppBoundDomain == NavigatingToAppBoundDomain::Yes && (m_isInAppBrowserPrivacyEnabled || NETWORK_SESSION_COCOA_ADDITIONS)) ? You do write a single if clause in the second case below.
Brent Fulgham
Comment 4 2020-03-08 16:59:04 PDT
(In reply to John Wilander from comment #3) > Comment on attachment 393000 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=393000&action=review > > r=me with one comment. > > > Source/WebKit/NetworkProcess/cocoa/NetworkSessionCocoa.mm:1219 > > + if (m_isInAppBrowserPrivacyEnabled || NETWORK_SESSION_COCOA_ADDITIONS) > > Is there a reason for doing this is two if clauses and not if > (isNavigatingToAppBoundDomain == NavigatingToAppBoundDomain::Yes && > (m_isInAppBrowserPrivacyEnabled || NETWORK_SESSION_COCOA_ADDITIONS)) ? You > do write a single if clause in the second case below. I probably should have done both identically.
Brent Fulgham
Comment 5 2020-03-08 17:55:21 PDT
WebKit Commit Bot
Comment 6 2020-03-08 18:03:07 PDT
The commit-queue encountered the following flaky tests while processing attachment 393000 [details]: imported/w3c/web-platform-tests/xhr/open-send-open.htm bug 208794 (author: youennf@gmail.com) The commit-queue is continuing to process your patch.
Chris Dumez
Comment 7 2020-03-24 12:20:09 PDT
Comment on attachment 393000 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=393000&action=review > Source/WebKit/UIProcess/WebPageProxy.cpp:3100 > + if (isMainFrame && (m_preferences->isInAppBrowserPrivacyEnabled() || WEB_PAGE_PROXY_ADDITIONS_SETISNAVIGATINGTOAPPBOUNDDOMAIN_2)) { So now this can get enabled even if the pref is disabled? See <rdar://problem/60518694>.
Note You need to log in before you can comment on or make changes to this bug.