1234567891011121314151617181920212223 |
- 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
- @@ -989,7 +989,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.20.1
|