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 1546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1557 "enable-tcp-fast-open", | 1557 "enable-tcp-fast-open", |
1558 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, | 1558 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_NAME, |
1559 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, | 1559 IDS_FLAGS_ENABLE_TCP_FAST_OPEN_DESCRIPTION, |
1560 kOsLinux | kOsCrOS | kOsAndroid, | 1560 kOsLinux | kOsCrOS | kOsAndroid, |
1561 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) | 1561 SINGLE_VALUE_TYPE(switches::kEnableTcpFastOpen) |
1562 }, | 1562 }, |
1563 { | 1563 { |
1564 "apps-use-native-frame", | 1564 "apps-use-native-frame", |
1565 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, | 1565 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_NAME, |
1566 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, | 1566 IDS_FLAGS_ENABLE_NATIVE_FRAMES_FOR_APPS_DESCRIPTION, |
1567 kOsMac | kOsWin, | 1567 kOsMac, |
1568 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) | 1568 SINGLE_VALUE_TYPE(switches::kAppsUseNativeFrame) |
1569 }, | 1569 }, |
1570 { | 1570 { |
1571 "enable-syncfs-directory-operation", | 1571 "enable-syncfs-directory-operation", |
1572 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, | 1572 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_NAME, |
1573 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, | 1573 IDS_FLAGS_ENABLE_SYNC_DIRECTORY_OPERATION_DESCRIPTION, |
1574 kOsAll, | 1574 kOsAll, |
1575 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), | 1575 SINGLE_VALUE_TYPE(switches::kSyncfsEnableDirectoryOperation), |
1576 }, | 1576 }, |
1577 #if defined(ENABLE_MDNS) | 1577 #if defined(ENABLE_MDNS) |
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2510 } | 2510 } |
2511 | 2511 |
2512 const Experiment* GetExperiments(size_t* count) { | 2512 const Experiment* GetExperiments(size_t* count) { |
2513 *count = num_experiments; | 2513 *count = num_experiments; |
2514 return experiments; | 2514 return experiments; |
2515 } | 2515 } |
2516 | 2516 |
2517 } // namespace testing | 2517 } // namespace testing |
2518 | 2518 |
2519 } // namespace about_flags | 2519 } // namespace about_flags |
OLD | NEW |