* Updated patches for v79 Remaining issue: * blank tabs when running on x86 emulators Waiting on upstream to fix that. The other upstream storage bug (https://bugs.chromium.org/p/chromium/issues/detail?id=1033655) is fixed in this version.
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: Sat, 13 Sep 2014 17:12:43 +0200
|
|
Subject: first_run: deactivate autoupdate globally
|
|
|
|
We currently do not have any update service infrastructure in place
|
|
(i.e. on our webserver), and sending update requests to Google also
|
|
sounds meh (wrong provider, after all).
|
|
|
|
Also, there is no tunable in chrome://settings (or similar) yet to
|
|
turn it back on.
|
|
---
|
|
chrome/browser/extensions/extension_system_impl.cc | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/chrome/browser/extensions/extension_system_impl.cc b/chrome/browser/extensions/extension_system_impl.cc
|
|
--- a/chrome/browser/extensions/extension_system_impl.cc
|
|
+++ b/chrome/browser/extensions/extension_system_impl.cc
|
|
@@ -204,8 +204,7 @@ void ExtensionSystemImpl::Shared::Init(bool extensions_enabled) {
|
|
// ExtensionService depends on RuntimeData.
|
|
runtime_data_.reset(new RuntimeData(ExtensionRegistry::Get(profile_)));
|
|
|
|
- bool autoupdate_enabled = !profile_->IsGuestSession() &&
|
|
- !profile_->IsSystemProfile();
|
|
+ bool autoupdate_enabled = false;
|
|
#if defined(OS_CHROMEOS)
|
|
if (!extensions_enabled ||
|
|
chromeos::ProfileHelper::IsLockScreenAppProfile(profile_)) {
|
|
--
|
|
2.17.1
|
|
|