| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 kOsCrOS, | 817 kOsCrOS, |
| 818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), | 818 SINGLE_VALUE_TYPE(switches::kDisableHtml5Camera), |
| 819 }, | 819 }, |
| 820 { | 820 { |
| 821 "disable-new-oobe", | 821 "disable-new-oobe", |
| 822 IDS_FLAGS_DISABLE_NEW_OOBE, | 822 IDS_FLAGS_DISABLE_NEW_OOBE, |
| 823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, | 823 IDS_FLAGS_DISABLE_NEW_OOBE_DESCRIPTION, |
| 824 kOsCrOS, | 824 kOsCrOS, |
| 825 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), | 825 SINGLE_VALUE_TYPE(switches::kDisableNewOobe), |
| 826 }, | 826 }, |
| 827 { |
| 828 "disable-boot-animation", |
| 829 IDS_FLAGS_DISABLE_BOOT_ANIMATION, |
| 830 IDS_FLAGS_DISABLE_BOOT_ANIMATION_DESCRIPTION, |
| 831 kOsCrOS, |
| 832 SINGLE_VALUE_TYPE(switches::kDisableBootAnimation), |
| 833 }, |
| 827 #endif | 834 #endif |
| 828 { | 835 { |
| 829 "enable-views-textfield", | 836 "enable-views-textfield", |
| 830 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, | 837 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, |
| 831 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, | 838 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, |
| 832 kOsWin, | 839 kOsWin, |
| 833 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), | 840 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), |
| 834 }, | 841 }, |
| 835 { | 842 { |
| 836 "old-checkbox-style", | 843 "old-checkbox-style", |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1306 } | 1313 } |
| 1307 | 1314 |
| 1308 const Experiment* GetExperiments(size_t* count) { | 1315 const Experiment* GetExperiments(size_t* count) { |
| 1309 *count = num_experiments; | 1316 *count = num_experiments; |
| 1310 return experiments; | 1317 return experiments; |
| 1311 } | 1318 } |
| 1312 | 1319 |
| 1313 } // namespace testing | 1320 } // namespace testing |
| 1314 | 1321 |
| 1315 } // namespace about_flags | 1322 } // namespace about_flags |
| OLD | NEW |