26 lines
1.1 KiB
Diff
26 lines
1.1 KiB
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Sat, 9 Apr 2022 21:43:35 +0200
|
|
Subject: Disable crash reporting
|
|
|
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
|
---
|
|
content/public/common/content_features.cc | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
|
|
--- a/content/public/common/content_features.cc
|
|
+++ b/content/public/common/content_features.cc
|
|
@@ -227,8 +227,8 @@ const base::Feature kCooperativeScheduling{"CooperativeScheduling",
|
|
|
|
// Enables crash reporting via Reporting API.
|
|
// https://www.w3.org/TR/reporting/#crash-report
|
|
-const base::Feature kCrashReporting{"CrashReporting",
|
|
- base::FEATURE_ENABLED_BY_DEFAULT};
|
|
+const base::Feature kCrashReporting{"CrashReporting", // disabled by default on Bromite
|
|
+ base::FEATURE_DISABLED_BY_DEFAULT}; // ^
|
|
|
|
// Enables support for the `Critical-CH` response header.
|
|
// https://github.com/WICG/client-hints-infrastructure/blob/master/reliability.md#critical-ch
|
|
--
|
|
2.25.1
|