summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/signin/signin_features.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-05-04 11:03:41 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-05-11 13:53:16 +0000
commit9729c4479fe23554eae6e6dd1f30ff488f470c84 (patch)
treee72e659f304518ffb630835747cb9797d43f77b0 /chromium/chrome/browser/signin/signin_features.cc
parentc1eb7fe66e0e7a6e787f9127d99d293f71fbecb8 (diff)
downloadqtwebengine-chromium-9729c4479fe23554eae6e6dd1f30ff488f470c84.tar.gz
Add sources for push-notifications
Change-Id: Ibfaa78cdc3790b5936b2ae683328274ffc89c3bc Reviewed-by: Szabolcs David <davidsz@inf.u-szeged.hu> Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu>
Diffstat (limited to 'chromium/chrome/browser/signin/signin_features.cc')
-rw-r--r--chromium/chrome/browser/signin/signin_features.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/chromium/chrome/browser/signin/signin_features.cc b/chromium/chrome/browser/signin/signin_features.cc
new file mode 100644
index 00000000000..b1932809890
--- /dev/null
+++ b/chromium/chrome/browser/signin/signin_features.cc
@@ -0,0 +1,16 @@
+// Copyright 2020 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/signin/signin_features.h"
+
+// Enables the client-side processing of the HTTP response header
+// Google-Accounts-RemoveLocalAccount.
+const base::Feature kProcessGaiaRemoveLocalAccountHeader{
+ "ProcessGaiaRemoveLocalAccountHeader", base::FEATURE_ENABLED_BY_DEFAULT};
+
+// Allows policies to be loaded on a managed account without activating sync.
+// Uses enterprise confirmation dialog for managed accounts signin outside of
+// the profile picker.
+const base::Feature kAccountPoliciesLoadedWithoutSync{
+ "AccountPoliciesLoadedWithoutSync", base::FEATURE_DISABLED_BY_DEFAULT};