OLD | NEW |
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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 #if defined(OS_CHROMEOS) | 745 #if defined(OS_CHROMEOS) |
746 { | 746 { |
747 "allow-touchpad-three-finger-click", | 747 "allow-touchpad-three-finger-click", |
748 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, | 748 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, |
749 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, | 749 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, |
750 kOsCrOS, | 750 kOsCrOS, |
751 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) | 751 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) |
752 }, | 752 }, |
753 #endif | 753 #endif |
754 { | 754 { |
755 "disable-client-oauth-signin", | 755 "enable-client-oauth-signin", |
756 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_NAME, | 756 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_NAME, |
757 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, | 757 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, |
758 kOsMac | kOsWin | kOsLinux, | 758 kOsMac | kOsWin | kOsLinux, |
759 SINGLE_VALUE_TYPE(switches::kDisableClientOAuthSignin) | 759 SINGLE_VALUE_TYPE(switches::kEnableClientOAuthSignin) |
760 }, | 760 }, |
761 #if defined(USE_ASH) | 761 #if defined(USE_ASH) |
762 { | 762 { |
763 "show-launcher-alignment-menu", | 763 "show-launcher-alignment-menu", |
764 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, | 764 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, |
765 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, | 765 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, |
766 kOsAll, | 766 kOsAll, |
767 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 767 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) |
768 }, | 768 }, |
769 { | 769 { |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 } | 1334 } |
1335 | 1335 |
1336 const Experiment* GetExperiments(size_t* count) { | 1336 const Experiment* GetExperiments(size_t* count) { |
1337 *count = num_experiments; | 1337 *count = num_experiments; |
1338 return experiments; | 1338 return experiments; |
1339 } | 1339 } |
1340 | 1340 |
1341 } // namespace testing | 1341 } // namespace testing |
1342 | 1342 |
1343 } // namespace about_flags | 1343 } // namespace about_flags |
OLD | NEW |