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 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 SINGLE_VALUE_TYPE(switches::kEnablePinch), | 766 SINGLE_VALUE_TYPE(switches::kEnablePinch), |
767 }, | 767 }, |
768 { | 768 { |
769 "app-list-show-apps-only", | 769 "app-list-show-apps-only", |
770 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 770 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
771 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 771 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
772 kOsAll, | 772 kOsAll, |
773 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), | 773 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), |
774 }, | 774 }, |
775 { | 775 { |
776 "ash-extended-desktop", | 776 "ash-extended-desktop-disabled", |
777 IDS_FLAGS_ENABLE_ASH_EXTENDED_DESKTOP_NAME, | 777 IDS_FLAGS_DISABLE_ASH_EXTENDED_DESKTOP_NAME, |
778 IDS_FLAGS_ENABLE_ASH_EXTENDED_DESKTOP_DESCRIPTION, | 778 IDS_FLAGS_DISABLE_ASH_EXTENDED_DESKTOP_DESCRIPTION, |
779 kOsAll, | 779 kOsAll, |
780 SINGLE_VALUE_TYPE(ash::switches::kAshExtendedDesktop) | 780 SINGLE_VALUE_TYPE(ash::switches::kAshExtendedDesktopDisabled) |
781 }, | 781 }, |
782 #endif // defined(USE_ASH) | 782 #endif // defined(USE_ASH) |
783 #if defined(OS_CHROMEOS) | 783 #if defined(OS_CHROMEOS) |
784 { | 784 { |
785 "experimental-wallpaper-ui", | 785 "experimental-wallpaper-ui", |
786 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_NAME, | 786 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_NAME, |
787 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_DESCRIPTION, | 787 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_DESCRIPTION, |
788 kOsCrOS, | 788 kOsCrOS, |
789 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) | 789 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) |
790 }, | 790 }, |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1291 } | 1291 } |
1292 | 1292 |
1293 const Experiment* GetExperiments(size_t* count) { | 1293 const Experiment* GetExperiments(size_t* count) { |
1294 *count = num_experiments; | 1294 *count = num_experiments; |
1295 return experiments; | 1295 return experiments; |
1296 } | 1296 } |
1297 | 1297 |
1298 } // namespace testing | 1298 } // namespace testing |
1299 | 1299 |
1300 } // namespace about_flags | 1300 } // namespace about_flags |
OLD | NEW |