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

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

Issue 2396893002: Enable the MD User Menu by default on trunk. (Closed)
Patch Set: Address feedback on cocoa tests. Created 4 years, 2 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.
(...skipping 23 matching lines...) Expand all
34 34
35 // Enables using GAIA information to populate profile name and icon. 35 // Enables using GAIA information to populate profile name and icon.
36 const char kGoogleProfileInfo[] = "google-profile-info"; 36 const char kGoogleProfileInfo[] = "google-profile-info";
37 37
38 const base::Feature kMaterialDesignUserManager { 38 const base::Feature kMaterialDesignUserManager {
39 "MaterialDesignUserManager", base::FEATURE_ENABLED_BY_DEFAULT 39 "MaterialDesignUserManager", base::FEATURE_ENABLED_BY_DEFAULT
40 }; 40 };
41 41
42 // Enables or disables the material design desktop user menu. 42 // Enables or disables the material design desktop user menu.
43 const base::Feature kMaterialDesignUserMenu { 43 const base::Feature kMaterialDesignUserMenu {
44 "MaterialDesignUserMenu", base::FEATURE_DISABLED_BY_DEFAULT 44 "MaterialDesignUserMenu", base::FEATURE_ENABLED_BY_DEFAULT
45 }; 45 };
46 46
47 // Enables or disables the new password separated sign in flow in a tab modal 47 // Enables or disables the new password separated sign in flow in a tab modal
48 // dialog. 48 // dialog.
49 const base::Feature kUsePasswordSeparatedSigninFlow { 49 const base::Feature kUsePasswordSeparatedSigninFlow {
50 "UsePasswordSeparatedSigninFlow", base::FEATURE_ENABLED_BY_DEFAULT 50 "UsePasswordSeparatedSigninFlow", base::FEATURE_ENABLED_BY_DEFAULT
51 }; 51 };
52 52
53 } // namespace switches 53 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698