| 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) | 759 SINGLE_VALUE_TYPE(switches::kShowLauncherAlignmentMenu) |
| 760 }, | 760 }, |
| 761 { | 761 { |
| 762 "show-touch-hud", | 762 "show-touch-hud", |
| 763 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, | 763 IDS_FLAGS_SHOW_TOUCH_HUD_NAME, |
| 764 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, | 764 IDS_FLAGS_SHOW_TOUCH_HUD_DESCRIPTION, |
| 765 kOsAll, | 765 kOsAll, |
| 766 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) | 766 SINGLE_VALUE_TYPE(ash::switches::kAshTouchHud) |
| 767 }, | 767 }, |
| 768 { | 768 { |
| 769 "ash-notify-disabled", | |
| 770 IDS_FLAGS_DISABLE_ASH_NOTIFY_NAME, | |
| 771 IDS_FLAGS_DISABLE_ASH_NOTIFY_DESCRIPTION, | |
| 772 kOsAll, | |
| 773 SINGLE_VALUE_TYPE(ash::switches::kAshNotifyDisabled), | |
| 774 }, | |
| 775 { | |
| 776 "enable-pinch", | 769 "enable-pinch", |
| 777 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, | 770 IDS_FLAGS_ENABLE_PINCH_SCALE_NAME, |
| 778 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, | 771 IDS_FLAGS_ENABLE_PINCH_SCALE_DESCRIPTION, |
| 779 kOsAll, | 772 kOsAll, |
| 780 SINGLE_VALUE_TYPE(switches::kEnablePinch), | 773 SINGLE_VALUE_TYPE(switches::kEnablePinch), |
| 781 }, | 774 }, |
| 782 { | 775 { |
| 783 "app-list-show-apps-only", | 776 "app-list-show-apps-only", |
| 784 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 777 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
| 785 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 778 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1371 } | 1364 } |
| 1372 | 1365 |
| 1373 const Experiment* GetExperiments(size_t* count) { | 1366 const Experiment* GetExperiments(size_t* count) { |
| 1374 *count = num_experiments; | 1367 *count = num_experiments; |
| 1375 return experiments; | 1368 return experiments; |
| 1376 } | 1369 } |
| 1377 | 1370 |
| 1378 } // namespace testing | 1371 } // namespace testing |
| 1379 | 1372 |
| 1380 } // namespace about_flags | 1373 } // namespace about_flags |
| OLD | NEW |