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 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1458 "enable-tcp-fast-open", | 1458 "enable-tcp-fast-open", |
1459 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, | 1459 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, |
1460 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, | 1460 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, |
1461 kOsLinux | kOsCrOS | kOsAndroid, | 1461 kOsLinux | kOsCrOS | kOsAndroid, |
1462 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) | 1462 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) |
1463 }, | 1463 }, |
1464 { | 1464 { |
1465 "apps-use-native-frame", | 1465 "apps-use-native-frame", |
1466 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, | 1466 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, |
1467 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, | 1467 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, |
1468 kOsWin, | 1468 kOsMac | kOsWin, |
1469 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | 1469 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) |
1470 }, | 1470 }, |
1471 { | 1471 { |
1472 "enable-syncfs-directory-operation", | 1472 "enable-syncfs-directory-operation", |
1473 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1473 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1474 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1474 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1475 kOsAll, | 1475 kOsAll, |
1476 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1476 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1477 }, | 1477 }, |
1478 { | 1478 { |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2114 } | 2114 } |
2115 | 2115 |
2116 const Experiment* GetExperiments(size_t* count) { | 2116 const Experiment* GetExperiments(size_t* count) { |
2117 *count = num_experiments; | 2117 *count = num_experiments; |
2118 return experiments; | 2118 return experiments; |
2119 } | 2119 } |
2120 | 2120 |
2121 } // namespace testing | 2121 } // namespace testing |
2122 | 2122 |
2123 } // namespace about_flags | 2123 } // namespace about_flags |
OLD | NEW |