26 lines
1.0 KiB
Diff
26 lines
1.0 KiB
Diff
|
From: uazo <uazo@users.noreply.github.com>
|
||
|
Date: Mon, 17 Jul 2023 15:24:54 +0000
|
||
|
Subject: Lock Profile Cookie Database
|
||
|
|
||
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
||
|
---
|
||
|
chrome/browser/browser_features.cc | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/chrome/browser/browser_features.cc b/chrome/browser/browser_features.cc
|
||
|
--- a/chrome/browser/browser_features.cc
|
||
|
+++ b/chrome/browser/browser_features.cc
|
||
|
@@ -213,8 +213,8 @@ BASE_FEATURE(kAppBoundEncryptionMetrics,
|
||
|
// Enables locking the cookie database for profiles.
|
||
|
// TODO(crbug.com/1430226): Remove after fully launched.
|
||
|
BASE_FEATURE(kLockProfileCookieDatabase,
|
||
|
- "LockProfileCookieDatabase",
|
||
|
- base::FEATURE_ENABLED_BY_DEFAULT);
|
||
|
+ "LockProfileCookieDatabase", // enabled
|
||
|
+ base::FEATURE_ENABLED_BY_DEFAULT); // by default
|
||
|
|
||
|
// Don't call the Win32 API PrefetchVirtualMemory when loading chrome.dll inside
|
||
|
// non-browser processes. This is done by passing flags to these processes. This
|
||
|
--
|
||
|
2.25.1
|