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 1264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) | 1275 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) |
1276 }, | 1276 }, |
1277 { | 1277 { |
1278 "enable-new-md-input-view", | 1278 "enable-new-md-input-view", |
1279 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_NAME, | 1279 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_NAME, |
1280 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, | 1280 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, |
1281 kOsCrOS, | 1281 kOsCrOS, |
1282 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewMDInputView) | 1282 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewMDInputView) |
1283 }, | 1283 }, |
1284 { | 1284 { |
1285 "disable-physical-keyboard-autocorrect", | 1285 "enable-physical-keyboard-autocorrect", |
1286 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, | 1286 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, |
1287 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, | 1287 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, |
1288 kOsCrOS, | 1288 kOsCrOS, |
1289 SINGLE_VALUE_TYPE(chromeos::switches::kDisablePhysicalKeyboardAutocorrect) | 1289 ENABLE_DISABLE_VALUE_TYPE( |
| 1290 chromeos::switches::kEnablePhysicalKeyboardAutocorrect, |
| 1291 chromeos::switches::kDisablePhysicalKeyboardAutocorrect) |
1290 }, | 1292 }, |
1291 { | 1293 { |
1292 "disable-voice-input", | 1294 "disable-voice-input", |
1293 IDS_FLAGS_DISABLE_VOICE_INPUT_NAME, | 1295 IDS_FLAGS_DISABLE_VOICE_INPUT_NAME, |
1294 IDS_FLAGS_DISABLE_VOICE_INPUT_DESCRIPTION, | 1296 IDS_FLAGS_DISABLE_VOICE_INPUT_DESCRIPTION, |
1295 kOsCrOS, | 1297 kOsCrOS, |
1296 SINGLE_VALUE_TYPE(chromeos::switches::kDisableVoiceInput) | 1298 SINGLE_VALUE_TYPE(chromeos::switches::kDisableVoiceInput) |
1297 }, | 1299 }, |
1298 { | 1300 { |
1299 "enable-experimental-input-view-features", | 1301 "enable-experimental-input-view-features", |
(...skipping 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2739 } | 2741 } |
2740 | 2742 |
2741 const Experiment* GetExperiments(size_t* count) { | 2743 const Experiment* GetExperiments(size_t* count) { |
2742 *count = num_experiments; | 2744 *count = num_experiments; |
2743 return experiments; | 2745 return experiments; |
2744 } | 2746 } |
2745 | 2747 |
2746 } // namespace testing | 2748 } // namespace testing |
2747 | 2749 |
2748 } // namespace about_flags | 2750 } // namespace about_flags |
OLD | NEW |