| 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 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1355 #endif // ENABLE_SERVICE_DISCOVERY | 1355 #endif // ENABLE_SERVICE_DISCOVERY |
| 1356 #if defined(OS_WIN) | 1356 #if defined(OS_WIN) |
| 1357 { | 1357 { |
| 1358 "enable-cloud-print-xps", | 1358 "enable-cloud-print-xps", |
| 1359 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, | 1359 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_NAME, |
| 1360 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, | 1360 IDS_FLAGS_ENABLE_CLOUD_PRINT_XPS_DESCRIPTION, |
| 1361 kOsWin, | 1361 kOsWin, |
| 1362 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) | 1362 SINGLE_VALUE_TYPE(switches::kEnableCloudPrintXps) |
| 1363 }, | 1363 }, |
| 1364 #endif | 1364 #endif |
| 1365 #if defined(OS_MACOSX) | |
| 1366 { | |
| 1367 "enable-simplified-fullscreen", | |
| 1368 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_NAME, | |
| 1369 IDS_FLAGS_ENABLE_SIMPLIFIED_FULLSCREEN_DESCRIPTION, | |
| 1370 kOsMac, | |
| 1371 SINGLE_VALUE_TYPE(switches::kEnableSimplifiedFullscreen) | |
| 1372 }, | |
| 1373 #endif | |
| 1374 #if defined(USE_AURA) | 1365 #if defined(USE_AURA) |
| 1375 { | 1366 { |
| 1376 "tab-capture-upscale-quality", | 1367 "tab-capture-upscale-quality", |
| 1377 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_NAME, | 1368 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_NAME, |
| 1378 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_DESCRIPTION, | 1369 IDS_FLAGS_TAB_CAPTURE_UPSCALE_QUALITY_DESCRIPTION, |
| 1379 kOsAll, | 1370 kOsAll, |
| 1380 MULTI_VALUE_TYPE(kTabCaptureUpscaleQualityChoices) | 1371 MULTI_VALUE_TYPE(kTabCaptureUpscaleQualityChoices) |
| 1381 }, | 1372 }, |
| 1382 { | 1373 { |
| 1383 "tab-capture-downscale-quality", | 1374 "tab-capture-downscale-quality", |
| (...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 } | 2482 } |
| 2492 | 2483 |
| 2493 const Experiment* GetExperiments(size_t* count) { | 2484 const Experiment* GetExperiments(size_t* count) { |
| 2494 *count = num_experiments; | 2485 *count = num_experiments; |
| 2495 return experiments; | 2486 return experiments; |
| 2496 } | 2487 } |
| 2497 | 2488 |
| 2498 } // namespace testing | 2489 } // namespace testing |
| 2499 | 2490 |
| 2500 } // namespace about_flags | 2491 } // namespace about_flags |
| OLD | NEW |