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 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1453 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | 1453 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) |
1454 }, | 1454 }, |
1455 { | 1455 { |
1456 "enable-syncfs-directory-operation", | 1456 "enable-syncfs-directory-operation", |
1457 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1457 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1458 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1458 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1459 kOsAll, | 1459 kOsAll, |
1460 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1460 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1461 }, | 1461 }, |
1462 { | 1462 { |
1463 "enable-reset-profile-settings", | |
1464 IDS_FLAGS_ENABLE_RESET_PROFILE_SETTINGS_NAME, | |
1465 IDS_FLAGS_ENABLE_RESET_PROFILE_SETTINGS_DESCRIPTION, | |
1466 kOsAll, | |
1467 SINGLE_VALUE_TYPE(switches::kEnableResetProfileSettings) | |
1468 }, | |
1469 { | |
1470 "enable-device-discovery", | 1463 "enable-device-discovery", |
1471 IDS_FLAGS_ENABLE_DEVICE_DISCOVERY_NAME, | 1464 IDS_FLAGS_ENABLE_DEVICE_DISCOVERY_NAME, |
1472 IDS_FLAGS_ENABLE_DEVICE_DISCOVERY_DESCRIPTION, | 1465 IDS_FLAGS_ENABLE_DEVICE_DISCOVERY_DESCRIPTION, |
1473 kOsDesktop, | 1466 kOsDesktop, |
1474 SINGLE_VALUE_TYPE(switches::kEnableDeviceDiscovery) | 1467 SINGLE_VALUE_TYPE(switches::kEnableDeviceDiscovery) |
1475 }, | 1468 }, |
1476 #if defined(OS_MACOSX) | 1469 #if defined(OS_MACOSX) |
1477 { | 1470 { |
1478 "enable-app-list-shim", | 1471 "enable-app-list-shim", |
1479 IDS_FLAGS_ENABLE_APP_LIST_SHIM_NAME, | 1472 IDS_FLAGS_ENABLE_APP_LIST_SHIM_NAME, |
(...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2114 } | 2107 } |
2115 | 2108 |
2116 const Experiment* GetExperiments(size_t* count) { | 2109 const Experiment* GetExperiments(size_t* count) { |
2117 *count = num_experiments; | 2110 *count = num_experiments; |
2118 return experiments; | 2111 return experiments; |
2119 } | 2112 } |
2120 | 2113 |
2121 } // namespace testing | 2114 } // namespace testing |
2122 | 2115 |
2123 } // namespace about_flags | 2116 } // namespace about_flags |
OLD | NEW |