Certificate Transparency: Require SCTs for EV certificates.
[chromium-blink-merge.git] / components / signin / core / common / signin_switches.cc
blobc6e914ee7d47480c0523f86ceaee4494d103793e
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/signin/core/common/signin_switches.h"
7 namespace switches {
9 // Clears the token service before using it. This allows simulating the
10 // expiration of credentials during testing.
11 const char kClearTokenService[] = "clear-token-service";
13 // Disables consistent identity features.
14 const char kDisableAccountConsistency[] = "disable-account-consistency";
16 // Disables new profile management system, including new profile chooser UI.
17 const char kDisableNewProfileManagement[] = "disable-new-profile-management";
19 // Disables the new avatar menu, forcing the top-corner avatar button.
20 const char kDisableNewAvatarMenu[] = "disable-new-avatar-menu";
22 // Disable sending signin scoped device id to LSO with refresh token request.
23 const char kDisableSigninScopedDeviceId[] = "disable-signin-scoped-device-id";
25 // Enables consistent identity features.
26 const char kEnableAccountConsistency[] = "enable-account-consistency";
28 // Enable the new avatar menu and the User Manager.
29 const char kEnableNewAvatarMenu[] = "enable-new-avatar-menu";
31 // Enables new profile management system, including lock mode.
32 const char kEnableNewProfileManagement[] = "new-profile-management";
34 // Enables the pure web-based flow for sign in on first run/NTP/wrench menu/
35 // settings page.
36 const char kEnableWebBasedSignin[] = "enable-web-based-signin";
38 // Enables the webview-based flow for sign in.
39 const char kEnableWebviewBasedSignin[] = "enable-webview-based-signin";
41 // Enables multiple account versions of chrome.identity APIs.
42 const char kExtensionsMultiAccount[] = "extensions-multi-account";
44 // Allows displaying the list of existing profiles in the avatar bubble for
45 // fast switching between profiles.
46 const char kFastUserSwitching[] = "fast-user-switching";
48 // Enables using GAIA information to populate profile name and icon.
49 const char kGoogleProfileInfo[] = "google-profile-info";
51 } // namespace switches