Skip to content

Commit

Permalink
first_run: deactivate autoupdate globally
Browse files Browse the repository at this point in the history
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.
jengelh committed Nov 14, 2023
1 parent a7d9943 commit 91b96ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions chrome/browser/extensions/extension_system_impl.cc
Original file line number Diff line number Diff line change
@@ -200,6 +200,9 @@ void ExtensionSystemImpl::Shared::Init(bool extensions_enabled) {

bool autoupdate_enabled = !profile_->IsGuestSession() &&
!profile_->IsSystemProfile();
if (autoupdate_enabled)
fprintf(stderr, "*** autoupdate was enabled, overriding with false\n");
autoupdate_enabled = false;
#if BUILDFLAG(IS_CHROMEOS_ASH)
if (!extensions_enabled ||
ash::ProfileHelper::IsLockScreenAppProfile(profile_)) {

0 comments on commit 91b96ef

Please sign in to comment.