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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 kOsAll, | 1022 kOsAll, |
1023 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), | 1023 SINGLE_VALUE_TYPE(ash::switches::kAshDebugShortcuts), |
1024 }, | 1024 }, |
1025 { "ash-enable-touch-view-testing", | 1025 { "ash-enable-touch-view-testing", |
1026 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, | 1026 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_NAME, |
1027 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, | 1027 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TESTING_DESCRIPTION, |
1028 kOsCrOS, | 1028 kOsCrOS, |
1029 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), | 1029 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTesting), |
1030 }, | 1030 }, |
1031 { | 1031 { |
1032 "ash-enable-touch-view-touch-feedback", | 1032 "enable-touch-feedback", |
1033 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_NAME, | 1033 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_NAME, |
1034 IDS_FLAGS_ASH_ENABLE_TOUCH_VIEW_TOUCH_FEEDBACK_DESCRIPTION, | 1034 IDS_FLAGS_ENABLE_TOUCH_FEEDBACK_DESCRIPTION, |
1035 kOsCrOS, | 1035 kOsCrOS, |
1036 SINGLE_VALUE_TYPE(ash::switches::kAshEnableTouchViewTouchFeedback), | 1036 SINGLE_VALUE_TYPE(switches::kEnableTouchFeedback), |
1037 }, | 1037 }, |
1038 { "ash-disable-text-filtering-in-overview-mode", | 1038 { "ash-disable-text-filtering-in-overview-mode", |
1039 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, | 1039 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_NAME, |
1040 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, | 1040 IDS_FLAGS_ASH_DISABLE_TEXT_FILTERING_IN_OVERVIEW_MODE_DESCRIPTION, |
1041 kOsCrOS, | 1041 kOsCrOS, |
1042 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), | 1042 SINGLE_VALUE_TYPE(ash::switches::kAshDisableTextFilteringInOverviewMode), |
1043 }, | 1043 }, |
1044 #endif // defined(USE_ASH) | 1044 #endif // defined(USE_ASH) |
1045 #if defined(OS_CHROMEOS) | 1045 #if defined(OS_CHROMEOS) |
1046 { | 1046 { |
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2470 } | 2470 } |
2471 | 2471 |
2472 const Experiment* GetExperiments(size_t* count) { | 2472 const Experiment* GetExperiments(size_t* count) { |
2473 *count = num_experiments; | 2473 *count = num_experiments; |
2474 return experiments; | 2474 return experiments; |
2475 } | 2475 } |
2476 | 2476 |
2477 } // namespace testing | 2477 } // namespace testing |
2478 | 2478 |
2479 } // namespace about_flags | 2479 } // namespace about_flags |
OLD | NEW |