| 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 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1276 }, | 1276 }, |
| 1277 #endif | 1277 #endif |
| 1278 { | 1278 { |
| 1279 "full-history-sync", | 1279 "full-history-sync", |
| 1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, | 1280 IDS_FLAGS_FULL_HISTORY_SYNC_NAME, |
| 1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, | 1281 IDS_FLAGS_FULL_HISTORY_SYNC_DESCRIPTION, |
| 1282 kOsAll, | 1282 kOsAll, |
| 1283 SINGLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync) | 1283 SINGLE_VALUE_TYPE(switches::kHistoryEnableFullHistorySync) |
| 1284 }, | 1284 }, |
| 1285 { | 1285 { |
| 1286 "enable-sync-dictionary", | |
| 1287 IDS_FLAGS_ENABLE_SYNC_DICTIONARY_NAME, | |
| 1288 IDS_FLAGS_ENABLE_SYNC_DICTIONARY_DESCRIPTION, | |
| 1289 kOsWin | kOsCrOS | kOsLinux, | |
| 1290 SINGLE_VALUE_TYPE(switches::kEnableSyncDictionary) | |
| 1291 }, | |
| 1292 { | |
| 1293 "enable-usermedia-screen-capture", | 1286 "enable-usermedia-screen-capture", |
| 1294 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, | 1287 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_NAME, |
| 1295 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, | 1288 IDS_FLAGS_ENABLE_SCREEN_CAPTURE_DESCRIPTION, |
| 1296 kOsDesktop, | 1289 kOsDesktop, |
| 1297 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) | 1290 SINGLE_VALUE_TYPE(switches::kEnableUserMediaScreenCapturing) |
| 1298 }, | 1291 }, |
| 1299 }; | 1292 }; |
| 1300 | 1293 |
| 1301 const Experiment* experiments = kExperiments; | 1294 const Experiment* experiments = kExperiments; |
| 1302 size_t num_experiments = arraysize(kExperiments); | 1295 size_t num_experiments = arraysize(kExperiments); |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 } | 1718 } |
| 1726 | 1719 |
| 1727 const Experiment* GetExperiments(size_t* count) { | 1720 const Experiment* GetExperiments(size_t* count) { |
| 1728 *count = num_experiments; | 1721 *count = num_experiments; |
| 1729 return experiments; | 1722 return experiments; |
| 1730 } | 1723 } |
| 1731 | 1724 |
| 1732 } // namespace testing | 1725 } // namespace testing |
| 1733 | 1726 |
| 1734 } // namespace about_flags | 1727 } // namespace about_flags |
| OLD | NEW |