24 lines
850 B
Diff
24 lines
850 B
Diff
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
|
Date: Wed, 25 Apr 2018 10:23:51 +0200
|
|
Subject: Disable metrics on all I/O threads
|
|
|
|
---
|
|
chrome/browser/browser_process_impl.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
|
|
--- a/chrome/browser/browser_process_impl.cc
|
|
+++ b/chrome/browser/browser_process_impl.cc
|
|
@@ -965,7 +965,7 @@ void BrowserProcessImpl::RegisterPrefs(PrefRegistrySimple* registry) {
|
|
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
|
|
|
|
registry->RegisterBooleanPref(metrics::prefs::kMetricsReportingEnabled,
|
|
- GoogleUpdateSettings::GetCollectStatsConsent());
|
|
+ false);
|
|
registry->RegisterBooleanPref(prefs::kDevToolsRemoteDebuggingAllowed, true);
|
|
}
|
|
|
|
--
|
|
2.17.1
|
|
|