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 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 SINGLE_VALUE_TYPE(switches::kDisableNewWallpaperUI) | 789 SINGLE_VALUE_TYPE(switches::kDisableNewWallpaperUI) |
790 }, | 790 }, |
791 { | 791 { |
792 "enable-drive-v2-api", | 792 "enable-drive-v2-api", |
793 IDS_FLAGS_ENABLE_DRIVE_V2_API, | 793 IDS_FLAGS_ENABLE_DRIVE_V2_API, |
794 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, | 794 IDS_FLAGS_ENABLE_DRIVE_V2_API_DESCRIPTION, |
795 kOsCrOS, | 795 kOsCrOS, |
796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), | 796 SINGLE_VALUE_TYPE(switches::kEnableDriveV2Api), |
797 }, | 797 }, |
798 { | 798 { |
799 "use-leveldb-for-gdata", | |
800 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_NAME, | |
801 IDS_FLAGS_USE_LEVELDB_FOR_GDATA_DESCRIPTION, | |
802 kOsCrOS, | |
803 SINGLE_VALUE_TYPE(switches::kUseLevelDBForGData), | |
804 }, | |
805 { | |
806 "disable-html5-camera", | 799 "disable-html5-camera", |
807 IDS_FLAGS_DISABLE_HTML5_CAMERA, | 800 IDS_FLAGS_DISABLE_HTML5_CAMERA, |
808 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION, | 801 IDS_FLAGS_DISABLE_HTML5_CAMERA_DESCRIPTION, |
809 kOsCrOS, | 802 kOsCrOS, |
810 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), | 803 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), |
811 }, | 804 }, |
812 { | 805 { |
813 "disable-new-oobe", | 806 "disable-new-oobe", |
814 IDS_FLAGS_DISABLE_NEW_OOBE, | 807 IDS_FLAGS_DISABLE_NEW_OOBE, |
815 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, | 808 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1364 } | 1357 } |
1365 | 1358 |
1366 const Experiment* GetExperiments(size_t* count) { | 1359 const Experiment* GetExperiments(size_t* count) { |
1367 *count = num_experiments; | 1360 *count = num_experiments; |
1368 return experiments; | 1361 return experiments; |
1369 } | 1362 } |
1370 | 1363 |
1371 } // namespace testing | 1364 } // namespace testing |
1372 | 1365 |
1373 } // namespace about_flags | 1366 } // namespace about_flags |
OLD | NEW |