| 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 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 { | 906 { |
| 907 "app-list-show-apps-only", | 907 "app-list-show-apps-only", |
| 908 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 908 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
| 909 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 909 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
| 910 kOsAll, | 910 kOsAll, |
| 911 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), | 911 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), |
| 912 }, | 912 }, |
| 913 #endif // defined(USE_ASH) | 913 #endif // defined(USE_ASH) |
| 914 #if defined(OS_CHROMEOS) | 914 #if defined(OS_CHROMEOS) |
| 915 { | 915 { |
| 916 "force-oauth1", |
| 917 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_NAME, |
| 918 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_DESCRIPTION, |
| 919 kOsCrOS, |
| 920 SINGLE_VALUE_TYPE(::switches::kForceOAuth1), |
| 921 }, |
| 922 { |
| 916 "disable-new-oobe", | 923 "disable-new-oobe", |
| 917 IDS_FLAGS_DISABLE_NEW_OOBE, | 924 IDS_FLAGS_DISABLE_NEW_OOBE, |
| 918 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, | 925 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, |
| 919 kOsCrOS, | 926 kOsCrOS, |
| 920 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), | 927 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), |
| 921 }, | 928 }, |
| 922 { | 929 { |
| 923 "disable-new-password-changed-dialog", | 930 "disable-new-password-changed-dialog", |
| 924 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG, | 931 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG, |
| 925 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION, | 932 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION, |
| (...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 } | 1644 } |
| 1638 | 1645 |
| 1639 const Experiment* GetExperiments(size_t* count) { | 1646 const Experiment* GetExperiments(size_t* count) { |
| 1640 *count = num_experiments; | 1647 *count = num_experiments; |
| 1641 return experiments; | 1648 return experiments; |
| 1642 } | 1649 } |
| 1643 | 1650 |
| 1644 } // namespace testing | 1651 } // namespace testing |
| 1645 | 1652 |
| 1646 } // namespace about_flags | 1653 } // namespace about_flags |
| OLD | NEW |