| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 #endif // defined(USE_ASH) | 969 #endif // defined(USE_ASH) |
| 970 #if defined(OS_CHROMEOS) | 970 #if defined(OS_CHROMEOS) |
| 971 { | 971 { |
| 972 "enable-carrier-switching", | 972 "enable-carrier-switching", |
| 973 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, | 973 IDS_FLAGS_ENABLE_CARRIER_SWITCHING, |
| 974 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, | 974 IDS_FLAGS_ENABLE_CARRIER_SWITCHING_DESCRIPTION, |
| 975 kOsCrOS, | 975 kOsCrOS, |
| 976 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching) | 976 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCarrierSwitching) |
| 977 }, | 977 }, |
| 978 { | 978 { |
| 979 "enable-cloud-backup", | 979 "disable-cloud-import", |
| 980 IDS_FLAGS_ENABLE_CLOUD_BACKUP, | 980 IDS_FLAGS_DISABLE_CLOUD_IMPORT, |
| 981 IDS_FLAGS_ENABLE_CLOUD_BACKUP_DESCRIPTION, | 981 IDS_FLAGS_DISABLE_CLOUD_IMPORT_DESCRIPTION, |
| 982 kOsCrOS, | 982 kOsCrOS, |
| 983 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCloudBackup) | 983 SINGLE_VALUE_TYPE(chromeos::switches::kDisableCloudImport) |
| 984 }, | 984 }, |
| 985 { | 985 { |
| 986 "enable-request-tablet-site", | 986 "enable-request-tablet-site", |
| 987 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, | 987 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_NAME, |
| 988 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, | 988 IDS_FLAGS_ENABLE_REQUEST_TABLET_SITE_DESCRIPTION, |
| 989 kOsCrOS, | 989 kOsCrOS, |
| 990 SINGLE_VALUE_TYPE(chromeos::switches::kEnableRequestTabletSite) | 990 SINGLE_VALUE_TYPE(chromeos::switches::kEnableRequestTabletSite) |
| 991 }, | 991 }, |
| 992 #endif | 992 #endif |
| 993 { | 993 { |
| (...skipping 1738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2732 } | 2732 } |
| 2733 | 2733 |
| 2734 const Experiment* GetExperiments(size_t* count) { | 2734 const Experiment* GetExperiments(size_t* count) { |
| 2735 *count = num_experiments; | 2735 *count = num_experiments; |
| 2736 return experiments; | 2736 return experiments; |
| 2737 } | 2737 } |
| 2738 | 2738 |
| 2739 } // namespace testing | 2739 } // namespace testing |
| 2740 | 2740 |
| 2741 } // namespace about_flags | 2741 } // namespace about_flags |
| OLD | NEW |