| 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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 #if defined(OS_CHROMEOS) | 731 #if defined(OS_CHROMEOS) |
| 732 { | 732 { |
| 733 "allow-touchpad-three-finger-click", | 733 "allow-touchpad-three-finger-click", |
| 734 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, | 734 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_NAME, |
| 735 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, | 735 IDS_FLAGS_ALLOW_TOUCHPAD_THREE_FINGER_CLICK_DESCRIPTION, |
| 736 kOsCrOS, | 736 kOsCrOS, |
| 737 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) | 737 SINGLE_VALUE_TYPE(switches::kEnableTouchpadThreeFingerClick) |
| 738 }, | 738 }, |
| 739 #endif | 739 #endif |
| 740 { | 740 { |
| 741 "disable-client-oauth-signin", | 741 "enable-client-oauth-signin", |
| 742 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_NAME, | 742 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_NAME, |
| 743 IDS_FLAGS_DISABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, | 743 IDS_FLAGS_ENABLE_CLIENT_OAUTH_SIGNIN_DESCRIPTION, |
| 744 kOsMac | kOsWin | kOsLinux, | 744 kOsMac | kOsWin | kOsLinux, |
| 745 SINGLE_VALUE_TYPE(switches::kDisableClientOAuthSignin) | 745 SINGLE_VALUE_TYPE(switches::kEnableClientOAuthSignin) |
| 746 }, | 746 }, |
| 747 #if defined(USE_ASH) | 747 #if defined(USE_ASH) |
| 748 { | 748 { |
| 749 "show-launcher-alignment-menu", | 749 "show-launcher-alignment-menu", |
| 750 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, | 750 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_NAME, |
| 751 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, | 751 IDS_FLAGS_SHOW_LAUNCHER_ALIGNMENT_MENU_DESCRIPTION, |
| 752 kOsAll, | 752 kOsAll, |
| 753 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 753 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) |
| 754 }, | 754 }, |
| 755 { | 755 { |
| (...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1320 } | 1320 } |
| 1321 | 1321 |
| 1322 const Experiment* GetExperiments(size_t* count) { | 1322 const Experiment* GetExperiments(size_t* count) { |
| 1323 *count = num_experiments; | 1323 *count = num_experiments; |
| 1324 return experiments; | 1324 return experiments; |
| 1325 } | 1325 } |
| 1326 | 1326 |
| 1327 } // namespace testing | 1327 } // namespace testing |
| 1328 | 1328 |
| 1329 } // namespace about_flags | 1329 } // namespace about_flags |
| OLD | NEW |