* Updated patches for v79 Remaining issue: * blank tabs when running on x86 emulators Waiting on upstream to fix that. The other upstream storage bug (https://bugs.chromium.org/p/chromium/issues/detail?id=1033655) is fixed in this version.
25 lines
996 B
Diff
25 lines
996 B
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Wed, 11 Oct 2017 22:50:10 +0200
|
|
Subject: Disable third-party cookies by default
|
|
|
|
author: Chad Miller <chad.miller@canonical.com>
|
|
---
|
|
components/content_settings/core/browser/cookie_settings.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/components/content_settings/core/browser/cookie_settings.cc b/components/content_settings/core/browser/cookie_settings.cc
|
|
--- a/components/content_settings/core/browser/cookie_settings.cc
|
|
+++ b/components/content_settings/core/browser/cookie_settings.cc
|
|
@@ -58,7 +58,7 @@ void CookieSettings::GetCookieSettings(
|
|
void CookieSettings::RegisterProfilePrefs(
|
|
user_prefs::PrefRegistrySyncable* registry) {
|
|
registry->RegisterBooleanPref(
|
|
- prefs::kBlockThirdPartyCookies, false,
|
|
+ prefs::kBlockThirdPartyCookies, true,
|
|
user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
|
|
registry->RegisterIntegerPref(
|
|
prefs::kCookieControlsMode,
|
|
--
|
|
2.17.1
|
|
|