| 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 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1345 #endif // ENABLE_SERVICE_DISCOVERY | 1345 #endif // ENABLE_SERVICE_DISCOVERY |
| 1346 #if defined(OS_WIN) | 1346 #if defined(OS_WIN) |
| 1347 { | 1347 { |
| 1348 "enable-cloud-print-xps", | 1348 "enable-cloud-print-xps", |
| 1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, | 1349 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, |
| 1350 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, | 1350 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, |
| 1351 kOsWin, | 1351 kOsWin, |
| 1352 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) | 1352 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) |
| 1353 }, | 1353 }, |
| 1354 #endif | 1354 #endif |
| 1355 #if defined(OS_MACOSX) | |
| 1356 { | |
| 1357 "enable-simplified-fullscreen", | |
| 1358 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, | |
| 1359 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, | |
| 1360 kOsMac, | |
| 1361 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) | |
| 1362 }, | |
| 1363 #endif | |
| 1364 #if defined(USE_AURA) | 1355 #if defined(USE_AURA) |
| 1365 { | 1356 { |
| 1366 "tab-capture-upscale-quality", | 1357 "tab-capture-upscale-quality", |
| 1367 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_NAME, | 1358 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_NAME, |
| 1368 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_DESCRIPTION, | 1359 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_DESCRIPTION, |
| 1369 kOsAll, | 1360 kOsAll, |
| 1370 MULTI_VALUE_TYPE(kTabCaptureUpscaleQualityChoices) | 1361 MULTI_VALUE_TYPE(kTabCaptureUpscaleQualityChoices) |
| 1371 }, | 1362 }, |
| 1372 { | 1363 { |
| 1373 "tab-capture-downscale-quality", | 1364 "tab-capture-downscale-quality", |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2473 } | 2464 } |
| 2474 | 2465 |
| 2475 const Experiment* GetExperiments(size_t* count) { | 2466 const Experiment* GetExperiments(size_t* count) { |
| 2476 *count = num_experiments; | 2467 *count = num_experiments; |
| 2477 return experiments; | 2468 return experiments; |
| 2478 } | 2469 } |
| 2479 | 2470 |
| 2480 } // namespace testing | 2471 } // namespace testing |
| 2481 | 2472 |
| 2482 } // namespace about_flags | 2473 } // namespace about_flags |
| OLD | NEW |