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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 SINGLE_VALUE_TYPE(switches::kEnablePinch), | 788 SINGLE_VALUE_TYPE(switches::kEnablePinch), |
789 }, | 789 }, |
790 { | 790 { |
791 "app-list-show-apps-only", | 791 "app-list-show-apps-only", |
792 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 792 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
793 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 793 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
794 kOsAll, | 794 kOsAll, |
795 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), | 795 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), |
796 }, | 796 }, |
797 { | 797 { |
798 "ash-extended-desktop", | 798 "ash-extended-desktop-disabled", |
799 IDS_FLAGS_ENABLE_ASH_EXTENDED_DESKTOP_NAME, | 799 IDS_FLAGS_DISABLE_ASH_EXTENDED_DESKTOP_NAME, |
800 IDS_FLAGS_ENABLE_ASH_EXTENDED_DESKTOP_DESCRIPTION, | 800 IDS_FLAGS_DISABLE_ASH_EXTENDED_DESKTOP_DESCRIPTION, |
801 kOsAll, | 801 kOsAll, |
802 SINGLE_VALUE_TYPE(ash::switches::kAshExtendedDesktop) | 802 SINGLE_VALUE_TYPE(ash::switches::kAshExtendedDesktopDisabled) |
803 }, | 803 }, |
804 #endif // defined(USE_ASH) | 804 #endif // defined(USE_ASH) |
805 #if defined(OS_CHROMEOS) | 805 #if defined(OS_CHROMEOS) |
806 { | 806 { |
807 "experimental-wallpaper-ui", | 807 "experimental-wallpaper-ui", |
808 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_NAME, | 808 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_NAME, |
809 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_DESCRIPTION, | 809 IDS_FLAGS_EXPERIMENTAL_WALLPAPER_UI_DESCRIPTION, |
810 kOsCrOS, | 810 kOsCrOS, |
811 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) | 811 SINGLE_VALUE_TYPE(switches::kExperimentalWallpaperUI) |
812 }, | 812 }, |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1334 } | 1334 } |
1335 | 1335 |
1336 const Experiment* GetExperiments(size_t* count) { | 1336 const Experiment* GetExperiments(size_t* count) { |
1337 *count = num_experiments; | 1337 *count = num_experiments; |
1338 return experiments; | 1338 return experiments; |
1339 } | 1339 } |
1340 | 1340 |
1341 } // namespace testing | 1341 } // namespace testing |
1342 | 1342 |
1343 } // namespace about_flags | 1343 } // namespace about_flags |
OLD | NEW |