| 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 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1016 kOsAll, | 1016 kOsAll, |
| 1017 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), | 1017 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), |
| 1018 }, | 1018 }, |
| 1019 { "ash-enable-touch-view-testing", | 1019 { "ash-enable-touch-view-testing", |
| 1020 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, | 1020 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, |
| 1021 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, | 1021 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, |
| 1022 kOsCrOS, | 1022 kOsCrOS, |
| 1023 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), | 1023 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), |
| 1024 }, | 1024 }, |
| 1025 { | 1025 { |
| 1026 "ash-enable-touch-view-touch-feedback", | 1026 "enable-touch-feedback", |
| 1027 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_NAME, | 1027 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_NAME, |
| 1028 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_DESCRIPTION, | 1028 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_DESCRIPTION, |
| 1029 kOsCrOS, | 1029 kOsCrOS, |
| 1030 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTouchFeedback), | 1030 SINGLE_VALUE_TYPE(switches::kEnableTouchFeedback), |
| 1031 }, | 1031 }, |
| 1032 { "ash-disable-text-filtering-in-overview-mode", | 1032 { "ash-disable-text-filtering-in-overview-mode", |
| 1033 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, | 1033 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, |
| 1034 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, | 1034 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, |
| 1035 kOsCrOS, | 1035 kOsCrOS, |
| 1036 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), | 1036 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), |
| 1037 }, | 1037 }, |
| 1038 #endif // defined(USE_ASH) | 1038 #endif // defined(USE_ASH) |
| 1039 #if defined(OS_CHROMEOS) | 1039 #if defined(OS_CHROMEOS) |
| 1040 { | 1040 { |
| (...skipping 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2519 } | 2519 } |
| 2520 | 2520 |
| 2521 const Experiment* GetExperiments(size_t* count) { | 2521 const Experiment* GetExperiments(size_t* count) { |
| 2522 *count = num_experiments; | 2522 *count = num_experiments; |
| 2523 return experiments; | 2523 return experiments; |
| 2524 } | 2524 } |
| 2525 | 2525 |
| 2526 } // namespace testing | 2526 } // namespace testing |
| 2527 | 2527 |
| 2528 } // namespace about_flags | 2528 } // namespace about_flags |
| OLD | NEW |