| 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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 #if defined(ENABLE_SERVICE_DISCOVERY) | 1344 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 1345 { | 1345 { |
| 1346 "device-discovery-notifications", | 1346 "device-discovery-notifications", |
| 1347 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME, | 1347 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME, |
| 1348 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION, | 1348 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION, |
| 1349 kOsDesktop, | 1349 kOsDesktop, |
| 1350 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications, | 1350 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications, |
| 1351 switches::kDisableDeviceDiscoveryNotifications) | 1351 switches::kDisableDeviceDiscoveryNotifications) |
| 1352 }, | 1352 }, |
| 1353 { | 1353 { |
| 1354 "enable-cloud-devices", | |
| 1355 IDS_FLAGS_ENABLE_CLOUD_DEVICES_NAME, | |
| 1356 IDS_FLAGS_ENABLE_CLOUD_DEVICES_DESCRIPTION, | |
| 1357 kOsDesktop, | |
| 1358 SINGLE_VALUE_TYPE(switches::kEnableCloudDevices) | |
| 1359 }, | |
| 1360 { | |
| 1361 "enable-print-preview-register-promos", | 1354 "enable-print-preview-register-promos", |
| 1362 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_NAME, | 1355 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_NAME, |
| 1363 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_DESCRIPTION, | 1356 IDS_FLAGS_ENABLE_PRINT_PREVIEW_REGISTER_PROMOS_DESCRIPTION, |
| 1364 kOsDesktop, | 1357 kOsDesktop, |
| 1365 SINGLE_VALUE_TYPE(switches::kEnablePrintPreviewRegisterPromos) | 1358 SINGLE_VALUE_TYPE(switches::kEnablePrintPreviewRegisterPromos) |
| 1366 }, | 1359 }, |
| 1367 #endif // ENABLE_SERVICE_DISCOVERY | 1360 #endif // ENABLE_SERVICE_DISCOVERY |
| 1368 #if defined(OS_WIN) | 1361 #if defined(OS_WIN) |
| 1369 { | 1362 { |
| 1370 "enable-cloud-print-xps", | 1363 "enable-cloud-print-xps", |
| (...skipping 1358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2729 } | 2722 } |
| 2730 | 2723 |
| 2731 const Experiment* GetExperiments(size_t* count) { | 2724 const Experiment* GetExperiments(size_t* count) { |
| 2732 *count = num_experiments; | 2725 *count = num_experiments; |
| 2733 return experiments; | 2726 return experiments; |
| 2734 } | 2727 } |
| 2735 | 2728 |
| 2736 } // namespace testing | 2729 } // namespace testing |
| 2737 | 2730 |
| 2738 } // namespace about_flags | 2731 } // namespace about_flags |
| OLD | NEW |