| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 966 kOsCrOS, | 966 kOsCrOS, |
| 967 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), | 967 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), |
| 968 }, | 968 }, |
| 969 { | 969 { |
| 970 "disable-touch-feedback", | 970 "disable-touch-feedback", |
| 971 IDS_FLAGS_DISABLE_TOUCH_FEEDBACK_NAME, | 971 IDS_FLAGS_DISABLE_TOUCH_FEEDBACK_NAME, |
| 972 IDS_FLAGS_DISABLE_TOUCH_FEEDBACK_DESCRIPTION, | 972 IDS_FLAGS_DISABLE_TOUCH_FEEDBACK_DESCRIPTION, |
| 973 kOsCrOS, | 973 kOsCrOS, |
| 974 SINGLE_VALUE_TYPE(switches::kDisableTouchFeedback), | 974 SINGLE_VALUE_TYPE(switches::kDisableTouchFeedback), |
| 975 }, | 975 }, |
| 976 { "ash-disable-text-filtering-in-overview-mode", | |
| 977 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, | |
| 978 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, | |
| 979 kOsCrOS, | |
| 980 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), | |
| 981 }, | |
| 982 { "ash-enable-mirrored-screen", | 976 { "ash-enable-mirrored-screen", |
| 983 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME, | 977 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_NAME, |
| 984 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION, | 978 IDS_FLAGS_ASH_ENABLE_MIRRORED_SCREEN_DESCRIPTION, |
| 985 kOsCrOS, | 979 kOsCrOS, |
| 986 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen), | 980 SINGLE_VALUE_TYPE(ash::switches::kAshEnableMirroredScreen), |
| 987 }, | 981 }, |
| 988 #endif // defined(USE_ASH) | 982 #endif // defined(USE_ASH) |
| 989 #if defined(OS_CHROMEOS) | 983 #if defined(OS_CHROMEOS) |
| 990 { | 984 { |
| 991 "enable-carrier-switching", | 985 "enable-carrier-switching", |
| (...skipping 1730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2722 } | 2716 } |
| 2723 | 2717 |
| 2724 const Experiment* GetExperiments(size_t* count) { | 2718 const Experiment* GetExperiments(size_t* count) { |
| 2725 *count = num_experiments; | 2719 *count = num_experiments; |
| 2726 return experiments; | 2720 return experiments; |
| 2727 } | 2721 } |
| 2728 | 2722 |
| 2729 } // namespace testing | 2723 } // namespace testing |
| 2730 | 2724 |
| 2731 } // namespace about_flags | 2725 } // namespace about_flags |
| OLD | NEW |