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 1280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1291 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1291 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
1292 }, | 1292 }, |
1293 { | 1293 { |
1294 "enable-tcp-fast-open", | 1294 "enable-tcp-fast-open", |
1295 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, | 1295 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, |
1296 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, | 1296 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, |
1297 kOsLinux | kOsCrOS | kOsAndroid, | 1297 kOsLinux | kOsCrOS | kOsAndroid, |
1298 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) | 1298 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) |
1299 }, | 1299 }, |
1300 { | 1300 { |
1301 "apps-use-native-frame", | |
1302 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, | |
1303 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, | |
1304 kOsMac, | |
1305 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | |
1306 }, | |
1307 { | |
1308 "enable-syncfs-directory-operation", | 1301 "enable-syncfs-directory-operation", |
1309 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1302 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1310 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1303 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1311 kOsAll, | 1304 kOsAll, |
1312 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1305 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1313 }, | 1306 }, |
1314 #if defined(ENABLE_SERVICE_DISCOVERY) | 1307 #if defined(ENABLE_SERVICE_DISCOVERY) |
1315 { | 1308 { |
1316 "disable-device-discovery", | 1309 "disable-device-discovery", |
1317 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, | 1310 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, |
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2362 } | 2355 } |
2363 | 2356 |
2364 const Experiment* GetExperiments(size_t* count) { | 2357 const Experiment* GetExperiments(size_t* count) { |
2365 *count = num_experiments; | 2358 *count = num_experiments; |
2366 return experiments; | 2359 return experiments; |
2367 } | 2360 } |
2368 | 2361 |
2369 } // namespace testing | 2362 } // namespace testing |
2370 | 2363 |
2371 } // namespace about_flags | 2364 } // namespace about_flags |
OLD | NEW |