| 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 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1139 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation), | 1139 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation), |
| 1140 }, | 1140 }, |
| 1141 { | 1141 { |
| 1142 "file-manager-show-checkboxes", | 1142 "file-manager-show-checkboxes", |
| 1143 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_NAME, | 1143 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_NAME, |
| 1144 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_DESCRIPTION, | 1144 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_DESCRIPTION, |
| 1145 kOsCrOS, | 1145 kOsCrOS, |
| 1146 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerShowCheckboxes) | 1146 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerShowCheckboxes) |
| 1147 }, | 1147 }, |
| 1148 { | 1148 { |
| 1149 "enable-new-audio-player", |
| 1150 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_AUDIO_PLAYER_NAME, |
| 1151 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_AUDIO_PLAYER_DESCRIPTION, |
| 1152 kOsCrOS, |
| 1153 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableNewAudioPlayer) |
| 1154 }, |
| 1155 { |
| 1149 "file-manager-enable-webstore-integration", | 1156 "file-manager-enable-webstore-integration", |
| 1150 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION, | 1157 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION, |
| 1151 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION_DESCRIPTION, | 1158 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION_DESCRIPTION, |
| 1152 kOsCrOS, | 1159 kOsCrOS, |
| 1153 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableWebstoreIntegration) | 1160 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableWebstoreIntegration) |
| 1154 }, | 1161 }, |
| 1155 { | 1162 { |
| 1156 "disable-quickoffice-component-app", | 1163 "disable-quickoffice-component-app", |
| 1157 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, | 1164 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, |
| 1158 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, | 1165 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, |
| (...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 } | 2498 } |
| 2492 | 2499 |
| 2493 const Experiment* GetExperiments(size_t* count) { | 2500 const Experiment* GetExperiments(size_t* count) { |
| 2494 *count = num_experiments; | 2501 *count = num_experiments; |
| 2495 return experiments; | 2502 return experiments; |
| 2496 } | 2503 } |
| 2497 | 2504 |
| 2498 } // namespace testing | 2505 } // namespace testing |
| 2499 | 2506 |
| 2500 } // namespace about_flags | 2507 } // namespace about_flags |
| OLD | NEW |