Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(588)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 676593004: Adds experimental flag --enable-experimental-ime-features. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
1307 }, 1307 },
1308 { 1308 {
1309 "enable-input-view", 1309 "enable-input-view",
1310 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME, 1310 IDS_FLAGS_ENABLE_INPUT_VIEW_NAME,
1311 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION, 1311 IDS_FLAGS_ENABLE_INPUT_VIEW_DESCRIPTION,
1312 kOsCrOS, 1312 kOsCrOS,
1313 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView, 1313 ENABLE_DISABLE_VALUE_TYPE(keyboard::switches::kEnableInputView,
1314 keyboard::switches::kDisableInputView) 1314 keyboard::switches::kDisableInputView)
1315 }, 1315 },
1316 { 1316 {
1317 "enable-new-korean-ime",
1318 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_NAME,
1319 IDS_FLAGS_ENABLE_NEW_KOREAN_IME_DESCRIPTION,
1320 kOsCrOS,
1321 SINGLE_VALUE_TYPE(chromeos::switches::kEnableNewKoreanIme)
1322 },
1323 {
1324 "enable-physical-keyboard-autocorrect",
1325 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_NAME,
1326 IDS_FLAGS_ENABLE_PHYSICAL_KEYBOARD_AUTOCORRECT_DESCRIPTION,
1327 kOsCrOS,
1328 SINGLE_VALUE_TYPE(chromeos::switches::kEnablePhysicalKeyboardAutocorrect)
1329 },
1330 {
1317 "enable-experimental-input-view-features", 1331 "enable-experimental-input-view-features",
1318 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME, 1332 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_NAME,
1319 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION, 1333 IDS_FLAGS_ENABLE_EXPERIMENTAL_INPUT_VIEW_FEATURES_DESCRIPTION,
1320 kOsCrOS, 1334 kOsCrOS,
1321 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures) 1335 SINGLE_VALUE_TYPE(keyboard::switches::kEnableExperimentalInputViewFeatures)
1322 }, 1336 },
1323 #if defined(ENABLE_EXTENSIONS) 1337 #if defined(ENABLE_EXTENSIONS)
1324 { 1338 {
1325 "enable-extension-info-dialog", 1339 "enable-extension-info-dialog",
1326 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_NAME, 1340 IDS_FLAGS_ENABLE_EXTENSION_INFO_DIALOG_NAME,
(...skipping 1237 matching lines...) Expand 10 before | Expand all | Expand 10 after
2564 } 2578 }
2565 2579
2566 const Experiment* GetExperiments(size_t* count) { 2580 const Experiment* GetExperiments(size_t* count) {
2567 *count = num_experiments; 2581 *count = num_experiments;
2568 return experiments; 2582 return experiments;
2569 } 2583 }
2570 2584
2571 } // namespace testing 2585 } // namespace testing
2572 2586
2573 } // namespace about_flags 2587 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698