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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1246 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) | 1246 SINGLE_VALUE_TYPE(keyboard::switches::kEnableSwipeSelection) |
1247 }, | 1247 }, |
1248 { | 1248 { |
1249 "enable-input-view", | 1249 "enable-input-view", |
1250 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, | 1250 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, |
1251 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, | 1251 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, |
1252 kOsCrOS, | 1252 kOsCrOS, |
1253 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, | 1253 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, |
1254 keyboard::switches::kDisableInputView) | 1254 keyboard::switches::kDisableInputView) |
1255 }, | 1255 }, |
| 1256 { |
| 1257 "enable-experimental-input-view-features", |
| 1258 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, |
| 1259 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, |
| 1260 kOsCrOS, |
| 1261 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) |
| 1262 }, |
1256 #endif | 1263 #endif |
1257 { | 1264 { |
1258 "enable-simple-cache-backend", | 1265 "enable-simple-cache-backend", |
1259 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, | 1266 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_NAME, |
1260 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, | 1267 IDS_FLAGS_ENABLE_SIMPLE_CACHE_BACKEND_DESCRIPTION, |
1261 kOsWin | kOsMac | kOsLinux | kOsCrOS, | 1268 kOsWin | kOsMac | kOsLinux | kOsCrOS, |
1262 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) | 1269 MULTI_VALUE_TYPE(kSimpleCacheBackendChoices) |
1263 }, | 1270 }, |
1264 { | 1271 { |
1265 "enable-tcp-fast-open", | 1272 "enable-tcp-fast-open", |
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2341 } | 2348 } |
2342 | 2349 |
2343 const Experiment* GetExperiments(size_t* count) { | 2350 const Experiment* GetExperiments(size_t* count) { |
2344 *count = num_experiments; | 2351 *count = num_experiments; |
2345 return experiments; | 2352 return experiments; |
2346 } | 2353 } |
2347 | 2354 |
2348 } // namespace testing | 2355 } // namespace testing |
2349 | 2356 |
2350 } // namespace about_flags | 2357 } // namespace about_flags |
OLD | NEW |