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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1253 keyboard::switches::kDisableInputView) | 1253 keyboard::switches::kDisableInputView) |
1254 }, | 1254 }, |
1255 { | 1255 { |
1256 "enable-new-korean-ime", | 1256 "enable-new-korean-ime", |
1257 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, | 1257 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, |
1258 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, | 1258 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, |
1259 kOsCrOS, | 1259 kOsCrOS, |
1260 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) | 1260 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) |
1261 }, | 1261 }, |
1262 { | 1262 { |
1263 "enable-new-qp-input-view", | 1263 "enable-new-md-input-view", |
1264 IDS_FLAGS_ENABLE_NEW_QP_INPUT_VIEW_NAME, | 1264 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_NAME, |
1265 IDS_FLAGS_ENABLE_NEW_QP_INPUT_VIEW_DESCRIPTION, | 1265 IDS_FLAGS_ENABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, |
1266 kOsCrOS, | 1266 kOsCrOS, |
1267 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewQPInputView) | 1267 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewMDInputView) |
1268 }, | 1268 }, |
1269 { | 1269 { |
1270 "enable-physical-keyboard-autocorrect", | 1270 "enable-physical-keyboard-autocorrect", |
1271 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, | 1271 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME, |
1272 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, | 1272 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION, |
1273 kOsCrOS, | 1273 kOsCrOS, |
1274 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) | 1274 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect) |
1275 }, | 1275 }, |
1276 { | 1276 { |
1277 "enable-experimental-input-view-features", | 1277 "enable-experimental-input-view-features", |
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2691 } | 2691 } |
2692 | 2692 |
2693 const Experiment* GetExperiments(size_t* count) { | 2693 const Experiment* GetExperiments(size_t* count) { |
2694 *count = num_experiments; | 2694 *count = num_experiments; |
2695 return experiments; | 2695 return experiments; |
2696 } | 2696 } |
2697 | 2697 |
2698 } // namespace testing | 2698 } // namespace testing |
2699 | 2699 |
2700 } // namespace about_flags | 2700 } // namespace about_flags |
OLD | NEW |