| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 { | 878 { |
| 879 "app-list-show-apps-only", | 879 "app-list-show-apps-only", |
| 880 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 880 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
| 881 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 881 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
| 882 kOsAll, | 882 kOsAll, |
| 883 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), | 883 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), |
| 884 }, | 884 }, |
| 885 #endif // defined(USE_ASH) | 885 #endif // defined(USE_ASH) |
| 886 #if defined(OS_CHROMEOS) | 886 #if defined(OS_CHROMEOS) |
| 887 { | 887 { |
| 888 "force-oauth1", |
| 889 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_NAME, |
| 890 IDS_FLAGS_FORCE_OAUTH1_DISPLAY_DESCRIPTION, |
| 891 kOsCrOS, |
| 892 SINGLE_VALUE_TYPE(::switches::kForceOAuth1), |
| 893 }, |
| 894 { |
| 888 "disable-new-oobe", | 895 "disable-new-oobe", |
| 889 IDS_FLAGS_DISABLE_NEW_OOBE, | 896 IDS_FLAGS_DISABLE_NEW_OOBE, |
| 890 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, | 897 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, |
| 891 kOsCrOS, | 898 kOsCrOS, |
| 892 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), | 899 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), |
| 893 }, | 900 }, |
| 894 { | 901 { |
| 895 "disable-new-password-changed-dialog", | 902 "disable-new-password-changed-dialog", |
| 896 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG, | 903 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG, |
| 897 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION, | 904 IDS_FLAGS_DISABLE_NEW_PASSWORD_CHANGED_DIALOG_DESCRIPTION, |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 } | 1609 } |
| 1603 | 1610 |
| 1604 const Experiment* GetExperiments(size_t* count) { | 1611 const Experiment* GetExperiments(size_t* count) { |
| 1605 *count = num_experiments; | 1612 *count = num_experiments; |
| 1606 return experiments; | 1613 return experiments; |
| 1607 } | 1614 } |
| 1608 | 1615 |
| 1609 } // namespace testing | 1616 } // namespace testing |
| 1610 | 1617 |
| 1611 } // namespace about_flags | 1618 } // namespace about_flags |
| OLD | NEW |