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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1309 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1309 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
1310 }, | 1310 }, |
1311 { | 1311 { |
1312 "enable-tcp-fast-open", | 1312 "enable-tcp-fast-open", |
1313 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, | 1313 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, |
1314 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, | 1314 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, |
1315 kOsLinux | kOsCrOS | kOsAndroid, | 1315 kOsLinux | kOsCrOS | kOsAndroid, |
1316 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) | 1316 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) |
1317 }, | 1317 }, |
1318 { | 1318 { |
1319 "apps-use-native-frame", | |
1320 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, | |
1321 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, | |
1322 kOsMac, | |
1323 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | |
1324 }, | |
1325 { | |
1326 "enable-syncfs-directory-operation", | 1319 "enable-syncfs-directory-operation", |
1327 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1320 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1328 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1321 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1329 kOsAll, | 1322 kOsAll, |
1330 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1323 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1331 }, | 1324 }, |
1332 #if defined(ENABLE_SERVICE_DISCOVERY) | 1325 #if defined(ENABLE_SERVICE_DISCOVERY) |
1333 { | 1326 { |
1334 "disable-device-discovery", | 1327 "disable-device-discovery", |
1335 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, | 1328 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, |
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2353 } | 2346 } |
2354 | 2347 |
2355 const Experiment* GetExperiments(size_t* count) { | 2348 const Experiment* GetExperiments(size_t* count) { |
2356 *count = num_experiments; | 2349 *count = num_experiments; |
2357 return experiments; | 2350 return experiments; |
2358 } | 2351 } |
2359 | 2352 |
2360 } // namespace testing | 2353 } // namespace testing |
2361 | 2354 |
2362 } // namespace about_flags | 2355 } // namespace about_flags |
OLD | NEW |