Chromium Code Reviews| Index: ios/net/cookies/cookie_store_ios.mm |
| diff --git a/ios/net/cookies/cookie_store_ios.mm b/ios/net/cookies/cookie_store_ios.mm |
| index 68d11feb69cc6eb2d9b38b7ddbe2df073d786b31..8e9e9ea2c4ce0d4b66dd3589f138341006f6a679 100644 |
| --- a/ios/net/cookies/cookie_store_ios.mm |
| +++ b/ios/net/cookies/cookie_store_ios.mm |
| @@ -591,8 +591,7 @@ void CookieStoreIOS::ClearSystemStore() { |
| bool CookieStoreIOS::SystemCookiesAllowed() { |
| DCHECK(thread_checker_.CalledOnValidThread()); |
| - return [system_store_ cookieAcceptPolicy] == |
| - NSHTTPCookieAcceptPolicyAlways; |
| + return [system_store_ cookieAcceptPolicy] != NSHTTPCookieAcceptPolicyNever; |
|
Eugene But (OOO till 7-30)
2017/02/10 00:17:01
This will return YES if 3rd party cookies are bloc
lilyhoughton
2017/02/10 16:41:18
What is the specific issue that this change fixes?
mef
2017/02/10 17:04:59
Done.
mef
2017/02/10 17:04:59
It broke Cronet cookie tests.
I've entered crbug.
|
| } |
| void CookieStoreIOS::WriteToCookieMonster(NSArray* system_cookies) { |