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 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1074 kOsCrOSOwnerOnly, | 1074 kOsCrOSOwnerOnly, |
1075 SINGLE_VALUE_TYPE(switches::kDisableAppMode), | 1075 SINGLE_VALUE_TYPE(switches::kDisableAppMode), |
1076 }, | 1076 }, |
1077 { | 1077 { |
1078 "disable-force-fullscreen-app", | 1078 "disable-force-fullscreen-app", |
1079 IDS_FLAGS_DISABLE_FULLSCREEN_APP_NAME, | 1079 IDS_FLAGS_DISABLE_FULLSCREEN_APP_NAME, |
1080 IDS_FLAGS_DISABLE_FULLSCREEN_APP_DESCRIPTION, | 1080 IDS_FLAGS_DISABLE_FULLSCREEN_APP_DESCRIPTION, |
1081 kOsCrOS, | 1081 kOsCrOS, |
1082 SINGLE_VALUE_TYPE(switches::kDisableFullscreenApp), | 1082 SINGLE_VALUE_TYPE(switches::kDisableFullscreenApp), |
1083 }, | 1083 }, |
| 1084 { |
| 1085 "disable-quickoffice-component-app", |
| 1086 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_NAME, |
| 1087 IDS_FLAGS_DISABLE_QUICKOFFICE_COMPONENT_APP_DESCRIPTION, |
| 1088 kOsCrOS, |
| 1089 SINGLE_VALUE_TYPE(chromeos::switches::kDisableQuickofficeComponentApp), |
| 1090 }, |
1084 #endif // defined(OS_CHROMEOS) | 1091 #endif // defined(OS_CHROMEOS) |
1085 { | 1092 { |
1086 "views-textfield", | 1093 "views-textfield", |
1087 IDS_FLAGS_VIEWS_TEXTFIELD_NAME, | 1094 IDS_FLAGS_VIEWS_TEXTFIELD_NAME, |
1088 IDS_FLAGS_VIEWS_TEXTFIELD_DESCRIPTION, | 1095 IDS_FLAGS_VIEWS_TEXTFIELD_DESCRIPTION, |
1089 kOsWin, | 1096 kOsWin, |
1090 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableViewsTextfield, | 1097 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableViewsTextfield, |
1091 switches::kDisableViewsTextfield), | 1098 switches::kDisableViewsTextfield), |
1092 }, | 1099 }, |
1093 { | 1100 { |
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1900 } | 1907 } |
1901 | 1908 |
1902 const Experiment* GetExperiments(size_t* count) { | 1909 const Experiment* GetExperiments(size_t* count) { |
1903 *count = num_experiments; | 1910 *count = num_experiments; |
1904 return experiments; | 1911 return experiments; |
1905 } | 1912 } |
1906 | 1913 |
1907 } // namespace testing | 1914 } // namespace testing |
1908 | 1915 |
1909 } // namespace about_flags | 1916 } // namespace about_flags |
OLD | NEW |