| 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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 744 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) |
| 745 }, | 745 }, |
| 746 { | 746 { |
| 747 "show-touch-hud", | 747 "show-touch-hud", |
| 748 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, | 748 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, |
| 749 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, | 749 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, |
| 750 kOsAll, | 750 kOsAll, |
| 751 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) | 751 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) |
| 752 }, | 752 }, |
| 753 { | 753 { |
| 754 "ash-notify-disabled", | 754 "ash-notify", |
| 755 IDS_FLAGS_DISABLE_ASH_NOTIFY_NAME, | 755 IDS_FLAGS_DISABLE_ASH_NOTIFY_NAME, |
| 756 IDS_FLAGS_DISABLE_ASH_NOTIFY_DESCRIPTION, | 756 IDS_FLAGS_DISABLE_ASH_NOTIFY_DESCRIPTION, |
| 757 kOsAll, | 757 kOsAll, |
| 758 SINGLE_VALUE_TYPE(ash::switches::kAshNotifyDisabled), | 758 SINGLE_VALUE_TYPE(ash::switches::kAshNotify), |
| 759 }, | 759 }, |
| 760 { | 760 { |
| 761 "enable-pinch", | 761 "enable-pinch", |
| 762 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, | 762 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, |
| 763 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, | 763 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, |
| 764 kOsAll, | 764 kOsAll, |
| 765 SINGLE_VALUE_TYPE(switches::kEnablePinch), | 765 SINGLE_VALUE_TYPE(switches::kEnablePinch), |
| 766 }, | 766 }, |
| 767 { | 767 { |
| 768 "app-list-show-apps-only", | 768 "app-list-show-apps-only", |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 } | 1259 } |
| 1260 | 1260 |
| 1261 const Experiment* GetExperiments(size_t* count) { | 1261 const Experiment* GetExperiments(size_t* count) { |
| 1262 *count = num_experiments; | 1262 *count = num_experiments; |
| 1263 return experiments; | 1263 return experiments; |
| 1264 } | 1264 } |
| 1265 | 1265 |
| 1266 } // namespace testing | 1266 } // namespace testing |
| 1267 | 1267 |
| 1268 } // namespace about_flags | 1268 } // namespace about_flags |
| OLD | NEW |