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 <iterator> | 7 #include <iterator> |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <utility> | 10 #include <utility> |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1107 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, | 1107 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, |
1108 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, | 1108 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, |
1109 kOsWin | kOsCrOS, | 1109 kOsWin | kOsCrOS, |
1110 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchDragDrop, | 1110 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchDragDrop, |
1111 switches::kDisableTouchDragDrop) | 1111 switches::kDisableTouchDragDrop) |
1112 }, | 1112 }, |
1113 { | 1113 { |
1114 "enable-touch-editing", | 1114 "enable-touch-editing", |
1115 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, | 1115 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, |
1116 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, | 1116 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, |
1117 kOsCrOS, | 1117 kOsCrOS | kOsWin | kOsLinux, |
1118 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, | 1118 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, |
1119 switches::kDisableTouchEditing) | 1119 switches::kDisableTouchEditing) |
1120 }, | 1120 }, |
1121 { | 1121 { |
1122 "enable-suggestions-service", | 1122 "enable-suggestions-service", |
1123 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, | 1123 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, |
1124 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, | 1124 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, |
1125 kOsAndroid | kOsCrOS, | 1125 kOsAndroid | kOsCrOS, |
1126 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, | 1126 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, |
1127 switches::kDisableSuggestionsService) | 1127 switches::kDisableSuggestionsService) |
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2341 } | 2341 } |
2342 | 2342 |
2343 const Experiment* GetExperiments(size_t* count) { | 2343 const Experiment* GetExperiments(size_t* count) { |
2344 *count = num_experiments; | 2344 *count = num_experiments; |
2345 return experiments; | 2345 return experiments; |
2346 } | 2346 } |
2347 | 2347 |
2348 } // namespace testing | 2348 } // namespace testing |
2349 | 2349 |
2350 } // namespace about_flags | 2350 } // namespace about_flags |
OLD | NEW |