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 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 kOsCrOS, | 1068 kOsCrOS, |
1069 SINGLE_VALUE_TYPE(switches::kDisableFullscreenApp), | 1069 SINGLE_VALUE_TYPE(switches::kDisableFullscreenApp), |
1070 }, | 1070 }, |
1071 { | 1071 { |
1072 "disable-quickoffice-component-app", | 1072 "disable-quickoffice-component-app", |
1073 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, | 1073 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, |
1074 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, | 1074 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, |
1075 kOsCrOS, | 1075 kOsCrOS, |
1076 SINGLE_VALUE_TYPE(chromeos::switches::kDisableQuickofficeComponentApp), | 1076 SINGLE_VALUE_TYPE(chromeos::switches::kDisableQuickofficeComponentApp), |
1077 }, | 1077 }, |
1078 { | |
1079 "enable-kiosk-app-settings", | |
1080 IDS_FLAGS_ENABLE_KIOSK_APP_SETTINGS_NAME, | |
1081 IDS_FLAGS_ENABLE_KIOSK_APP_SETTINGS_DESCRIPTION, | |
1082 kOsCrOSOwnerOnly, | |
1083 SINGLE_VALUE_TYPE(chromeos::switches::kEnableKioskAppSettings), | |
1084 }, | |
1085 #endif // defined(OS_CHROMEOS) | 1078 #endif // defined(OS_CHROMEOS) |
1086 { | 1079 { |
1087 "views-textfield", | 1080 "views-textfield", |
1088 IDS_FLAGS_VIEWS_TEXTFIELD_NAME, | 1081 IDS_FLAGS_VIEWS_TEXTFIELD_NAME, |
1089 IDS_FLAGS_VIEWS_TEXTFIELD_DESCRIPTION, | 1082 IDS_FLAGS_VIEWS_TEXTFIELD_DESCRIPTION, |
1090 kOsWin, | 1083 kOsWin, |
1091 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableViewsTextfield, | 1084 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableViewsTextfield, |
1092 switches::kDisableViewsTextfield), | 1085 switches::kDisableViewsTextfield), |
1093 }, | 1086 }, |
1094 { | 1087 { |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1962 } | 1955 } |
1963 | 1956 |
1964 const Experiment* GetExperiments(size_t* count) { | 1957 const Experiment* GetExperiments(size_t* count) { |
1965 *count = num_experiments; | 1958 *count = num_experiments; |
1966 return experiments; | 1959 return experiments; |
1967 } | 1960 } |
1968 | 1961 |
1969 } // namespace testing | 1962 } // namespace testing |
1970 | 1963 |
1971 } // namespace about_flags | 1964 } // namespace about_flags |
OLD | NEW |