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 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1272 keyboard::switches::kDisableInputView) | 1272 keyboard::switches::kDisableInputView) |
1273 }, | 1273 }, |
1274 { | 1274 { |
1275 "enable-new-korean-ime", | 1275 "enable-new-korean-ime", |
1276 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, | 1276 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, |
1277 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, | 1277 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, |
1278 kOsCrOS, | 1278 kOsCrOS, |
1279 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) | 1279 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) |
1280 }, | 1280 }, |
1281 { | 1281 { |
1282 "enable-new-qp-input-view", | 1282 "enable-new-md-input-view", |
1283 IDS_FLAGS_ENABLE_NEW_QP_INPUT_VIEW_NAME, | 1283 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_NAME, |
1284 IDS_FLAGS_ENABLE_NEW_QP_INPUT_VIEW_DESCRIPTION, | 1284 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, |
1285 kOsCrOS, | 1285 kOsCrOS, |
1286 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewQPInputView) | 1286 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewMDInputView) |
1287 }, | 1287 }, |
1288 { | 1288 { |
1289 "disable-physical-keyboard-autocorrect", | 1289 "disable-physical-keyboard-autocorrect", |
1290 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, | 1290 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, |
1291 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, | 1291 IDS_FLAGS_DISABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, |
1292 kOsCrOS, | 1292 kOsCrOS, |
1293 SINGLE_VALUE_TYPE(chromeos::switches::kDisablePhysicalKeyboardAutocorrect) | 1293 SINGLE_VALUE_TYPE(chromeos::switches::kDisablePhysicalKeyboardAutocorrect) |
1294 }, | 1294 }, |
1295 { | 1295 { |
1296 "disable-voice-input", | 1296 "disable-voice-input", |
(...skipping 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2733 } | 2733 } |
2734 | 2734 |
2735 const Experiment* GetExperiments(size_t* count) { | 2735 const Experiment* GetExperiments(size_t* count) { |
2736 *count = num_experiments; | 2736 *count = num_experiments; |
2737 return experiments; | 2737 return experiments; |
2738 } | 2738 } |
2739 | 2739 |
2740 } // namespace testing | 2740 } // namespace testing |
2741 | 2741 |
2742 } // namespace about_flags | 2742 } // namespace about_flags |
OLD | NEW |