| 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 <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <iterator> | 10 #include <iterator> |
| (...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 ENABLE_DISABLE_VALUE_TYPE(cc::switches::kEnablePinchZoomScrollbars, | 1002 ENABLE_DISABLE_VALUE_TYPE(cc::switches::kEnablePinchZoomScrollbars, |
| 1003 cc::switches::kDisablePinchZoomScrollbars) | 1003 cc::switches::kDisablePinchZoomScrollbars) |
| 1004 }, | 1004 }, |
| 1005 { | 1005 { |
| 1006 "app-list-show-apps-only", | 1006 "app-list-show-apps-only", |
| 1007 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, | 1007 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_NAME, |
| 1008 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, | 1008 IDS_FLAGS_ENABLE_APP_LIST_SHOW_APPS_ONLY_DESCRIPTION, |
| 1009 kOsAll, | 1009 kOsAll, |
| 1010 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), | 1010 SINGLE_VALUE_TYPE(app_list::switches::kAppListShowAppsOnly), |
| 1011 }, | 1011 }, |
| 1012 { |
| 1013 "forced-maximize-mode", |
| 1014 IDS_FLAGS_FORCE_MAXIMIZE_MODE_NAME, |
| 1015 IDS_FLAGS_FORCE_MAXIMIZE_MODE_DESCRIPTION, |
| 1016 kOsLinux | kOsWin | kOsCrOS, |
| 1017 SINGLE_VALUE_TYPE(ash::switches::kForcedMaximizeMode), |
| 1018 }, |
| 1012 #endif // defined(USE_ASH) | 1019 #endif // defined(USE_ASH) |
| 1013 #if defined(OS_CHROMEOS) | 1020 #if defined(OS_CHROMEOS) |
| 1014 { | 1021 { |
| 1015 "disable-boot-animation", | 1022 "disable-boot-animation", |
| 1016 IDS_FLAGS_DISABLE_BOOT_ANIMATION, | 1023 IDS_FLAGS_DISABLE_BOOT_ANIMATION, |
| 1017 IDS_FLAGS_DISABLE_BOOT_ANIMATION_DESCRIPTION, | 1024 IDS_FLAGS_DISABLE_BOOT_ANIMATION_DESCRIPTION, |
| 1018 kOsCrOSOwnerOnly, | 1025 kOsCrOSOwnerOnly, |
| 1019 SINGLE_VALUE_TYPE(switches::kDisableBootAnimation), | 1026 SINGLE_VALUE_TYPE(switches::kDisableBootAnimation), |
| 1020 }, | 1027 }, |
| 1021 { | 1028 { |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 } | 1889 } |
| 1883 | 1890 |
| 1884 const Experiment* GetExperiments(size_t* count) { | 1891 const Experiment* GetExperiments(size_t* count) { |
| 1885 *count = num_experiments; | 1892 *count = num_experiments; |
| 1886 return experiments; | 1893 return experiments; |
| 1887 } | 1894 } |
| 1888 | 1895 |
| 1889 } // namespace testing | 1896 } // namespace testing |
| 1890 | 1897 |
| 1891 } // namespace about_flags | 1898 } // namespace about_flags |
| OLD | NEW |