| 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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 859 kOsCrOS, | 859 kOsCrOS, |
| 860 SINGLE_VALUE_TYPE(ash::switches::kAshDisableBootAnimation2), | 860 SINGLE_VALUE_TYPE(ash::switches::kAshDisableBootAnimation2), |
| 861 }, | 861 }, |
| 862 { | 862 { |
| 863 "boot-animation-fucntion", | 863 "boot-animation-fucntion", |
| 864 IDS_FLAGS_ASH_BOOT_ANIMATION_FUNCTION, | 864 IDS_FLAGS_ASH_BOOT_ANIMATION_FUNCTION, |
| 865 IDS_FLAGS_ASH_BOOT_ANIMATION_FUNCTION_DESCRIPTION, | 865 IDS_FLAGS_ASH_BOOT_ANIMATION_FUNCTION_DESCRIPTION, |
| 866 kOsCrOS, | 866 kOsCrOS, |
| 867 MULTI_VALUE_TYPE(kAshBootAnimationFunction), | 867 MULTI_VALUE_TYPE(kAshBootAnimationFunction), |
| 868 }, | 868 }, |
| 869 { | |
| 870 "disable-workspace2", | |
| 871 IDS_FLAGS_DISABLE_WORKSPACE2, | |
| 872 IDS_FLAGS_DISABLE_WORKSPACE2_DESCRIPTION, | |
| 873 kOsCrOS, | |
| 874 SINGLE_VALUE_TYPE(ash::switches::kAshDisableWorkspace2), | |
| 875 }, | |
| 876 #endif | 869 #endif |
| 877 { | 870 { |
| 878 "enable-views-textfield", | 871 "enable-views-textfield", |
| 879 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, | 872 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_NAME, |
| 880 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, | 873 IDS_FLAGS_ENABLE_VIEWS_TEXTFIELD_DESCRIPTION, |
| 881 kOsWin, | 874 kOsWin, |
| 882 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), | 875 SINGLE_VALUE_TYPE(switches::kEnableViewsTextfield), |
| 883 }, | 876 }, |
| 884 { | 877 { |
| 885 "old-checkbox-style", | 878 "old-checkbox-style", |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 } | 1384 } |
| 1392 | 1385 |
| 1393 const Experiment* GetExperiments(size_t* count) { | 1386 const Experiment* GetExperiments(size_t* count) { |
| 1394 *count = num_experiments; | 1387 *count = num_experiments; |
| 1395 return experiments; | 1388 return experiments; |
| 1396 } | 1389 } |
| 1397 | 1390 |
| 1398 } // namespace testing | 1391 } // namespace testing |
| 1399 | 1392 |
| 1400 } // namespace about_flags | 1393 } // namespace about_flags |
| OLD | NEW |