| 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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation), | 1144 SINGLE_VALUE_TYPE(chromeos::switches::kDisableBootAnimation), |
| 1145 }, | 1145 }, |
| 1146 { | 1146 { |
| 1147 "file-manager-show-checkboxes", | 1147 "file-manager-show-checkboxes", |
| 1148 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_NAME, | 1148 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_NAME, |
| 1149 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_DESCRIPTION, | 1149 IDS_FLAGS_FILE_MANAGER_SHOW_CHECKBOXES_DESCRIPTION, |
| 1150 kOsCrOS, | 1150 kOsCrOS, |
| 1151 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerShowCheckboxes) | 1151 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerShowCheckboxes) |
| 1152 }, | 1152 }, |
| 1153 { | 1153 { |
| 1154 "enable-new-audio-player", |
| 1155 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_AUDIO_PLAYER_NAME, |
| 1156 IDS_FLAGS_FILE_MANAGER_ENABLE_NEW_AUDIO_PLAYER_DESCRIPTION, |
| 1157 kOsCrOS, |
| 1158 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableNewAudioPlayer) |
| 1159 }, |
| 1160 { |
| 1154 "file-manager-enable-webstore-integration", | 1161 "file-manager-enable-webstore-integration", |
| 1155 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION, | 1162 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION, |
| 1156 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION_DESCRIPTION, | 1163 IDS_FLAGS_FILE_MANAGER_ENABLE_WEBSTORE_INTEGRATION_DESCRIPTION, |
| 1157 kOsCrOS, | 1164 kOsCrOS, |
| 1158 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableWebstoreIntegration) | 1165 SINGLE_VALUE_TYPE(chromeos::switches::kFileManagerEnableWebstoreIntegration) |
| 1159 }, | 1166 }, |
| 1160 { | 1167 { |
| 1161 "disable-quickoffice-component-app", | 1168 "disable-quickoffice-component-app", |
| 1162 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, | 1169 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, |
| 1163 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, | 1170 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, |
| (...skipping 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2498 } | 2505 } |
| 2499 | 2506 |
| 2500 const Experiment* GetExperiments(size_t* count) { | 2507 const Experiment* GetExperiments(size_t* count) { |
| 2501 *count = num_experiments; | 2508 *count = num_experiments; |
| 2502 return experiments; | 2509 return experiments; |
| 2503 } | 2510 } |
| 2504 | 2511 |
| 2505 } // namespace testing | 2512 } // namespace testing |
| 2506 | 2513 |
| 2507 } // namespace about_flags | 2514 } // namespace about_flags |
| OLD | NEW |