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 1506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1517 "enable-tcp-fast-open", | 1517 "enable-tcp-fast-open", |
1518 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, | 1518 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, |
1519 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, | 1519 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, |
1520 kOsLinux | kOsCrOS | kOsAndroid, | 1520 kOsLinux | kOsCrOS | kOsAndroid, |
1521 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) | 1521 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) |
1522 }, | 1522 }, |
1523 { | 1523 { |
1524 "apps-use-native-frame", | 1524 "apps-use-native-frame", |
1525 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, | 1525 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, |
1526 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, | 1526 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, |
1527 kOsMac | kOsWin, | 1527 kOsMac, |
1528 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | 1528 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) |
1529 }, | 1529 }, |
1530 { | 1530 { |
1531 "enable-syncfs-directory-operation", | 1531 "enable-syncfs-directory-operation", |
1532 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1532 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1533 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1533 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1534 kOsAll, | 1534 kOsAll, |
1535 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1535 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1536 }, | 1536 }, |
1537 #if defined(ENABLE_MDNS) | 1537 #if defined(ENABLE_MDNS) |
(...skipping 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2461 } | 2461 } |
2462 | 2462 |
2463 const Experiment* GetExperiments(size_t* count) { | 2463 const Experiment* GetExperiments(size_t* count) { |
2464 *count = num_experiments; | 2464 *count = num_experiments; |
2465 return experiments; | 2465 return experiments; |
2466 } | 2466 } |
2467 | 2467 |
2468 } // namespace testing | 2468 } // namespace testing |
2469 | 2469 |
2470 } // namespace about_flags | 2470 } // namespace about_flags |
OLD | NEW |