Chromium Code Reviews| 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 { | 226 { |
|
Lei Zhang
2012/08/21 20:18:33
Ditto, inside #if defined(OS_WIN)
Vitaly Buka (NO REVIEWS)
2012/08/21 20:39:55
Done.
| |
| 227 "print-raster", | |
| 228 IDS_FLAGS_PRINT_RASTER_NAME, | |
| 229 IDS_FLAGS_PRINT_RASTER_DESCRIPTION, | |
| 230 kOsWin, | |
| 231 SINGLE_VALUE_TYPE(switches::kPrintRaster) | |
| 232 }, | |
| 233 { | |
| 227 "crxless-web-apps", | 234 "crxless-web-apps", |
| 228 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, | 235 IDS_FLAGS_CRXLESS_WEB_APPS_NAME, |
| 229 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, | 236 IDS_FLAGS_CRXLESS_WEB_APPS_DESCRIPTION, |
| 230 kOsAll, | 237 kOsAll, |
| 231 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) | 238 SINGLE_VALUE_TYPE(switches::kEnableCrxlessWebApps) |
| 232 }, | 239 }, |
| 233 { | 240 { |
| 234 "ignore-gpu-blacklist", | 241 "ignore-gpu-blacklist", |
| 235 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, | 242 IDS_FLAGS_IGNORE_GPU_BLACKLIST_NAME, |
| 236 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, | 243 IDS_FLAGS_IGNORE_GPU_BLACKLIST_DESCRIPTION, |
| (...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1341 } | 1348 } |
| 1342 | 1349 |
| 1343 const Experiment* GetExperiments(size_t* count) { | 1350 const Experiment* GetExperiments(size_t* count) { |
| 1344 *count = num_experiments; | 1351 *count = num_experiments; |
| 1345 return experiments; | 1352 return experiments; |
| 1346 } | 1353 } |
| 1347 | 1354 |
| 1348 } // namespace testing | 1355 } // namespace testing |
| 1349 | 1356 |
| 1350 } // namespace about_flags | 1357 } // namespace about_flags |
| OLD | NEW |