Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: components/signin/core/common/signin_switches.cc

Issue 235813002: Add profile-switches to signin-internals; move switches to component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gyp(i) files Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/signin/core/common/signin_switches.h" 5 #include "components/signin/core/common/signin_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // Clears the token service before using it. This allows simulating the 9 // Clears the token service before using it. This allows simulating the
10 // expiration of credentials during testing. 10 // expiration of credentials during testing.
11 const char kClearTokenService[] = "clear-token-service"; 11 const char kClearTokenService[] = "clear-token-service";
12 12
13 // Enables the pure web-based flow for sign in on first run/NTP/wrench menu/
14 // settings page.
15 const char kEnableWebBasedSignin[] = "enable-web-based-signin";
16
17 // Allows displaying the list of existing profiles in the avatar bubble for
18 // fast switching between profiles.
19 const char kFastUserSwitching[] = "fast-user-switching";
20
21 // Enables using GAIA information to populate profile name and icon.
22 const char kGoogleProfileInfo[] = "google-profile-info";
23
24 // Use new profile management system, including profile sign-out and new
25 // choosers.
26 const char kNewProfileManagement[] = "new-profile-management";
27
13 } // namespace switches 28 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698