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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 431083003: Change new-avatar-menu to an enable-disable flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after
1435 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, 1435 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME,
1436 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, 1436 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION,
1437 kOsMac | kOsWin | kOsLinux, 1437 kOsMac | kOsWin | kOsLinux,
1438 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) 1438 SINGLE_VALUE_TYPE(switches::kFastUserSwitching)
1439 }, 1439 },
1440 { 1440 {
1441 "enable-new-avatar-menu", 1441 "enable-new-avatar-menu",
1442 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, 1442 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME,
1443 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, 1443 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION,
1444 kOsMac | kOsWin | kOsLinux, 1444 kOsMac | kOsWin | kOsLinux,
1445 SINGLE_VALUE_TYPE(switches::kNewAvatarMenu) 1445 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewAvatarMenu,
1446 switches::kDisableNewAvatarMenu)
1446 }, 1447 },
1447 { 1448 {
1448 "enable-web-based-signin", 1449 "enable-web-based-signin",
1449 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, 1450 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME,
1450 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, 1451 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION,
1451 kOsMac | kOsWin | kOsLinux, 1452 kOsMac | kOsWin | kOsLinux,
1452 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) 1453 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin)
1453 }, 1454 },
1454 { 1455 {
1455 "enable-google-profile-info", 1456 "enable-google-profile-info",
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
2440 } 2441 }
2441 2442
2442 const Experiment* GetExperiments(size_t* count) { 2443 const Experiment* GetExperiments(size_t* count) {
2443 *count = num_experiments; 2444 *count = num_experiments;
2444 return experiments; 2445 return experiments;
2445 } 2446 }
2446 2447
2447 } // namespace testing 2448 } // namespace testing
2448 2449
2449 } // namespace about_flags 2450 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698