summaryrefslogtreecommitdiff
path: root/patches/www-client/chromium-73.0.3683.75/third-party-cookies.patch
blob: 3092e7be191abef92752d76beb4ea4ceabc5cb38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
description: disable third-party cookies by default
author: Chad Miller <chad.miller@canonical.com>

--- a/components/content_settings/core/browser/cookie_settings.cc
+++ b/components/content_settings/core/browser/cookie_settings.cc
@@ -50,7 +50,7 @@ void CookieSettings::GetCookieSettings(
 void CookieSettings::RegisterProfilePrefs(
     user_prefs::PrefRegistrySyncable* registry) {
   registry->RegisterBooleanPref(
-      prefs::kBlockThirdPartyCookies, false,
+      prefs::kBlockThirdPartyCookies, true,
       user_prefs::PrefRegistrySyncable::SYNCABLE_PREF);
 }