| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 #endif | 216 #endif |
| 217 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) | 217 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintProxy) |
| 218 }, | 218 }, |
| 219 { | 219 { |
| 220 "print-setting-reset", // FLAGS:RECORD_UMA | 220 "print-setting-reset", // FLAGS:RECORD_UMA |
| 221 IDS_FLAGS_PRINT_SETTING_RESET_NAME, | 221 IDS_FLAGS_PRINT_SETTING_RESET_NAME, |
| 222 IDS_FLAGS_PRINT_SETTING_RESET_DESCRIPTION, | 222 IDS_FLAGS_PRINT_SETTING_RESET_DESCRIPTION, |
| 223 kOsAll, | 223 kOsAll, |
| 224 SINGLE_VALUE_TYPE(switches::kPrintSettingsReset) | 224 SINGLE_VALUE_TYPE(switches::kPrintSettingsReset) |
| 225 }, | 225 }, |
| 226 #if defined(OS_WIN) |
| 227 { |
| 228 "print-raster", |
| 229 IDS_FLAGS_PRINT_RASTER_NAME, |
| 230 IDS_FLAGS_PRINT_RASTER_DESCRIPTION, |
| 231 kOsWin, |
| 232 SINGLE_VALUE_TYPE(switches::kPrintRaster) |
| 233 }, |
| 234 #endif // OS_WIN |
| 226 { | 235 { |
| 227 "crxless-web-apps", | 236 "crxless-web-apps", |
| 228 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, | 237 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, |
| 229 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, | 238 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, |
| 230 kOsAll, | 239 kOsAll, |
| 231 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) | 240 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) |
| 232 }, | 241 }, |
| 233 { | 242 { |
| 234 "ignore-gpu-blacklist", | 243 "ignore-gpu-blacklist", |
| 235 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, | 244 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, |
| (...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 } | 1350 } |
| 1342 | 1351 |
| 1343 const Experiment* GetExperiments(size_t* count) { | 1352 const Experiment* GetExperiments(size_t* count) { |
| 1344 *count = num_experiments; | 1353 *count = num_experiments; |
| 1345 return experiments; | 1354 return experiments; |
| 1346 } | 1355 } |
| 1347 | 1356 |
| 1348 } // namespace testing | 1357 } // namespace testing |
| 1349 | 1358 |
| 1350 } // namespace about_flags | 1359 } // namespace about_flags |
| OLD | NEW |