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

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: Issue with the rebase 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
« no previous file with comments | « no previous file | chrome/browser/notifications/message_center_settings_controller_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after
1449 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME, 1449 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_NAME,
1450 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION, 1450 IDS_FLAGS_ENABLE_FAST_USER_SWITCHING_DESCRIPTION,
1451 kOsMac | kOsWin | kOsLinux, 1451 kOsMac | kOsWin | kOsLinux,
1452 SINGLE_VALUE_TYPE(switches::kFastUserSwitching) 1452 SINGLE_VALUE_TYPE(switches::kFastUserSwitching)
1453 }, 1453 },
1454 { 1454 {
1455 "enable-new-avatar-menu", 1455 "enable-new-avatar-menu",
1456 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME, 1456 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_NAME,
1457 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION, 1457 IDS_FLAGS_ENABLE_NEW_AVATAR_MENU_DESCRIPTION,
1458 kOsMac | kOsWin | kOsLinux, 1458 kOsMac | kOsWin | kOsLinux,
1459 SINGLE_VALUE_TYPE(switches::kNewAvatarMenu) 1459 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewAvatarMenu,
1460 switches::kDisableNewAvatarMenu)
1460 }, 1461 },
1461 { 1462 {
1462 "enable-web-based-signin", 1463 "enable-web-based-signin",
1463 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME, 1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_NAME,
1464 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION, 1465 IDS_FLAGS_ENABLE_WEB_BASED_SIGNIN_DESCRIPTION,
1465 kOsMac | kOsWin | kOsLinux, 1466 kOsMac | kOsWin | kOsLinux,
1466 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin) 1467 SINGLE_VALUE_TYPE(switches::kEnableWebBasedSignin)
1467 }, 1468 },
1468 { 1469 {
1469 "enable-google-profile-info", 1470 "enable-google-profile-info",
(...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after
2437 } 2438 }
2438 2439
2439 const Experiment* GetExperiments(size_t* count) { 2440 const Experiment* GetExperiments(size_t* count) {
2440 *count = num_experiments; 2441 *count = num_experiments;
2441 return experiments; 2442 return experiments;
2442 } 2443 }
2443 2444
2444 } // namespace testing 2445 } // namespace testing
2445 2446
2446 } // namespace about_flags 2447 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/notifications/message_center_settings_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698