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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1432 }, | 1432 }, |
1433 #endif | 1433 #endif |
1434 { | 1434 { |
1435 "enable-webgl-draft-extensions", | 1435 "enable-webgl-draft-extensions", |
1436 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME, | 1436 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_NAME, |
1437 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION, | 1437 IDS_FLAGS_ENABLE_WEBGL_DRAFT_EXTENSIONS_DESCRIPTION, |
1438 kOsAll, | 1438 kOsAll, |
1439 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions) | 1439 SINGLE_VALUE_TYPE(switches::kEnableWebGLDraftExtensions) |
1440 }, | 1440 }, |
1441 { | 1441 { |
1442 "enable-web-midi", | |
1443 IDS_FLAGS_ENABLE_WEB_MIDI_NAME, | |
1444 IDS_FLAGS_ENABLE_WEB_MIDI_DESCRIPTION, | |
1445 kOsMac | kOsWin | kOsLinux | kOsCrOS | kOsAndroid, | |
1446 SINGLE_VALUE_TYPE(switches::kEnableWebMIDI) | |
1447 }, | |
1448 { | |
1449 "enable-new-profile-management", | 1442 "enable-new-profile-management", |
1450 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, | 1443 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_NAME, |
1451 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, | 1444 IDS_FLAGS_ENABLE_NEW_PROFILE_MANAGEMENT_DESCRIPTION, |
1452 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 1445 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |
1453 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewProfileManagement, | 1446 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewProfileManagement, |
1454 switches::kDisableNewProfileManagement) | 1447 switches::kDisableNewProfileManagement) |
1455 }, | 1448 }, |
1456 { | 1449 { |
1457 "enable-account-consistency", | 1450 "enable-account-consistency", |
1458 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, | 1451 IDS_FLAGS_ENABLE_ACCOUNT_CONSISTENCY_NAME, |
(...skipping 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2871 } | 2864 } |
2872 | 2865 |
2873 const Experiment* GetExperiments(size_t* count) { | 2866 const Experiment* GetExperiments(size_t* count) { |
2874 *count = num_experiments; | 2867 *count = num_experiments; |
2875 return experiments; | 2868 return experiments; |
2876 } | 2869 } |
2877 | 2870 |
2878 } // namespace testing | 2871 } // namespace testing |
2879 | 2872 |
2880 } // namespace about_flags | 2873 } // namespace about_flags |
OLD | NEW |