| 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 { |
| 1319 "enable-syncfs-directory-operation", | 1326 "enable-syncfs-directory-operation", |
| 1320 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1327 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
| 1321 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1328 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
| 1322 kOsAll, | 1329 kOsAll, |
| 1323 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1330 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
| 1324 }, | 1331 }, |
| 1325 #if defined(ENABLE_SERVICE_DISCOVERY) | 1332 #if defined(ENABLE_SERVICE_DISCOVERY) |
| 1326 { | 1333 { |
| 1327 "disable-device-discovery", | 1334 "disable-device-discovery", |
| 1328 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, | 1335 IDS_FLAGS_DISABLE_DEVICE_DISCOVERY_NAME, |
| (...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2346 } | 2353 } |
| 2347 | 2354 |
| 2348 const Experiment* GetExperiments(size_t* count) { | 2355 const Experiment* GetExperiments(size_t* count) { |
| 2349 *count = num_experiments; | 2356 *count = num_experiments; |
| 2350 return experiments; | 2357 return experiments; |
| 2351 } | 2358 } |
| 2352 | 2359 |
| 2353 } // namespace testing | 2360 } // namespace testing |
| 2354 | 2361 |
| 2355 } // namespace about_flags | 2362 } // namespace about_flags |
| OLD | NEW |