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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
804 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) | 804 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) |
805 }, | 805 }, |
806 { | 806 { |
807 "enable-drive-v2-api", | 807 "enable-drive-v2-api", |
808 IDS_FLAGS_ENABLE_DRIVE_V2_API, | 808 IDS_FLAGS_ENABLE_DRIVE_V2_API, |
809 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, | 809 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, |
810 kOsCrOS, | 810 kOsCrOS, |
811 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), | 811 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), |
812 }, | 812 }, |
813 { | 813 { |
| 814 "use-leveldb-for-gdata", |
| 815 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_NAME, |
| 816 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_DESCRIPTION, |
| 817 kOsCrOS, |
| 818 SINGLE_VALUE_TYPE(switches::kUseLevelDBForGData), |
| 819 }, |
| 820 { |
814 "disable-html5-camera", | 821 "disable-html5-camera", |
815 IDS_FLAGS_DISABLE_HTML5_CAMERA, | 822 IDS_FLAGS_DISABLE_HTML5_CAMERA, |
816 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION, | 823 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION, |
817 kOsCrOS, | 824 kOsCrOS, |
818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), | 825 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), |
819 }, | 826 }, |
820 { | 827 { |
821 "disable-new-oobe", | 828 "disable-new-oobe", |
822 IDS_FLAGS_DISABLE_NEW_OOBE, | 829 IDS_FLAGS_DISABLE_NEW_OOBE, |
823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, | 830 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1313 } | 1320 } |
1314 | 1321 |
1315 const Experiment* GetExperiments(size_t* count) { | 1322 const Experiment* GetExperiments(size_t* count) { |
1316 *count = num_experiments; | 1323 *count = num_experiments; |
1317 return experiments; | 1324 return experiments; |
1318 } | 1325 } |
1319 | 1326 |
1320 } // namespace testing | 1327 } // namespace testing |
1321 | 1328 |
1322 } // namespace about_flags | 1329 } // namespace about_flags |
OLD | NEW |