Skip to content

Commit

Permalink
Disable chromium sign-in by default #13
Browse files Browse the repository at this point in the history
  • Loading branch information
GTANAdam committed Jul 10, 2022
1 parent 291365f commit de1b69d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/103.0.5060.122/GDI Implementation - 103.0.5060.122.patch
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ index 20f93edf5e294..8fee85a5f2be4 100644
// Enables pre-launch Code Integrity Guard (CIG) for Chrome network service
// process, when running on Windows 10 1511 and above. This has no effect if
// NetworkServiceSandbox feature is disabled. See
diff --git a/chrome/browser/signin/account_consistency_mode_manager.cc b/chrome/browser/signin/account_consistency_mode_manager.cc
index 77f0d835cd436..d7026516b98ab 100644
--- a/chrome/browser/signin/account_consistency_mode_manager.cc
+++ b/chrome/browser/signin/account_consistency_mode_manager.cc
@@ -112,7 +112,7 @@ AccountConsistencyModeManager::~AccountConsistencyModeManager() {}
// static
void AccountConsistencyModeManager::RegisterProfilePrefs(
user_prefs::PrefRegistrySyncable* registry) {
- registry->RegisterBooleanPref(prefs::kSigninAllowedOnNextStartup, true);
+ registry->RegisterBooleanPref(prefs::kSigninAllowedOnNextStartup, false);
}

// static
diff --git a/content/browser/renderer_host/dwrite_font_lookup_table_builder_win.cc b/content/browser/renderer_host/dwrite_font_lookup_table_builder_win.cc
index 9c7eae8d652c0..0c29375cae564 100644
--- a/content/browser/renderer_host/dwrite_font_lookup_table_builder_win.cc
Expand Down

0 comments on commit de1b69d

Please sign in to comment.