| 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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1405 }, | 1405 }, |
| 1406 { | 1406 { |
| 1407 "enable-input-view", | 1407 "enable-input-view", |
| 1408 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, | 1408 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, |
| 1409 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, | 1409 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, |
| 1410 kOsCrOS, | 1410 kOsCrOS, |
| 1411 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, | 1411 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, |
| 1412 keyboard::switches::kDisableInputView) | 1412 keyboard::switches::kDisableInputView) |
| 1413 }, | 1413 }, |
| 1414 { | 1414 { |
| 1415 "enable-new-korean-ime", | 1415 "disable-new-korean-ime", |
| 1416 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME, | 1416 IDS_FLAGS_DISABLE_NEW_KOREAN_IME_NAME, |
| 1417 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION, | 1417 IDS_FLAGS_DISABLE_NEW_KOREAN_IME_DESCRIPTION, |
| 1418 kOsCrOS, | 1418 kOsCrOS, |
| 1419 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme) | 1419 SINGLE_VALUE_TYPE(chromeos::switches::kDisableNewKoreanIme) |
| 1420 }, | 1420 }, |
| 1421 { | 1421 { |
| 1422 "disable-new-md-input-view", | 1422 "disable-new-md-input-view", |
| 1423 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_NAME, | 1423 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_NAME, |
| 1424 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, | 1424 IDS_FLAGS_DISABLE_NEW_MD_INPUT_VIEW_DESCRIPTION, |
| 1425 kOsCrOS, | 1425 kOsCrOS, |
| 1426 SINGLE_VALUE_TYPE(keyboard::switches::kDisableNewMDInputView) | 1426 SINGLE_VALUE_TYPE(keyboard::switches::kDisableNewMDInputView) |
| 1427 }, | 1427 }, |
| 1428 { | 1428 { |
| 1429 "enable-physical-keyboard-autocorrect", | 1429 "enable-physical-keyboard-autocorrect", |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3027 } | 3027 } |
| 3028 | 3028 |
| 3029 const Experiment* GetExperiments(size_t* count) { | 3029 const Experiment* GetExperiments(size_t* count) { |
| 3030 *count = num_experiments; | 3030 *count = num_experiments; |
| 3031 return experiments; | 3031 return experiments; |
| 3032 } | 3032 } |
| 3033 | 3033 |
| 3034 } // namespace testing | 3034 } // namespace testing |
| 3035 | 3035 |
| 3036 } // namespace about_flags | 3036 } // namespace about_flags |
| OLD | NEW |