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 1536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1547 }, | 1547 }, |
1548 { | 1548 { |
1549 "device-discovery-notifications", | 1549 "device-discovery-notifications", |
1550 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME, | 1550 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_NAME, |
1551 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION, | 1551 IDS_FLAGS_DEVICE_DISCOVERY_NOTIFICATIONS_DESCRIPTION, |
1552 kOsWin | kOsLinux | kOsCrOS, | 1552 kOsWin | kOsLinux | kOsCrOS, |
1553 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications, | 1553 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableDeviceDiscoveryNotifications, |
1554 switches::kDisableDeviceDiscoveryNotifications) | 1554 switches::kDisableDeviceDiscoveryNotifications) |
1555 }, | 1555 }, |
1556 { | 1556 { |
1557 "enable-privet-local-printing", | 1557 "disable-privet-local-printing", |
1558 IDS_FLAGS_ENABLE_PRIVET_LOCAL_PRINTING_NAME, | 1558 IDS_FLAGS_DISABLE_PRIVET_LOCAL_PRINTING_NAME, |
1559 IDS_FLAGS_ENABLE_PRIVET_LOCAL_PRINTING_DESCRIPTION, | 1559 IDS_FLAGS_DISABLE_PRIVET_LOCAL_PRINTING_DESCRIPTION, |
1560 kOsWin | kOsLinux | kOsCrOS, | 1560 kOsWin | kOsLinux | kOsCrOS, |
1561 SINGLE_VALUE_TYPE(switches::kEnablePrivetLocalPrinting) | 1561 SINGLE_VALUE_TYPE(switches::kDisablePrivetLocalPrinting) |
1562 }, | 1562 }, |
1563 #endif // ENABLE_MDNS | 1563 #endif // ENABLE_MDNS |
1564 #if defined(OS_MACOSX) | 1564 #if defined(OS_MACOSX) |
1565 { | 1565 { |
1566 "enable-app-shims", | 1566 "enable-app-shims", |
1567 IDS_FLAGS_ENABLE_APP_SHIMS_NAME, | 1567 IDS_FLAGS_ENABLE_APP_SHIMS_NAME, |
1568 IDS_FLAGS_ENABLE_APP_SHIMS_DESCRIPTION, | 1568 IDS_FLAGS_ENABLE_APP_SHIMS_DESCRIPTION, |
1569 kOsMac, | 1569 kOsMac, |
1570 SINGLE_VALUE_TYPE(switches::kEnableAppShims) | 1570 SINGLE_VALUE_TYPE(switches::kEnableAppShims) |
1571 }, | 1571 }, |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2359 } | 2359 } |
2360 | 2360 |
2361 const Experiment* GetExperiments(size_t* count) { | 2361 const Experiment* GetExperiments(size_t* count) { |
2362 *count = num_experiments; | 2362 *count = num_experiments; |
2363 return experiments; | 2363 return experiments; |
2364 } | 2364 } |
2365 | 2365 |
2366 } // namespace testing | 2366 } // namespace testing |
2367 | 2367 |
2368 } // namespace about_flags | 2368 } // namespace about_flags |
OLD | NEW |