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

Side by Side Diff: chromeos/chromeos_switches.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, 1 month 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 "chromeos/chromeos_switches.h" 5 #include "chromeos/chromeos_switches.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace switches { 8 namespace switches {
9 9
10 // Path for app's OEM manifest file. 10 // Path for app's OEM manifest file.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 const char kEnableCloudBackup[] = "enable-cloud-backup"; 82 const char kEnableCloudBackup[] = "enable-cloud-backup";
83 83
84 // Enables consumer management, which allows user to enroll, remotely lock and 84 // Enables consumer management, which allows user to enroll, remotely lock and
85 // locate the device. 85 // locate the device.
86 const char kEnableConsumerManagement[] = "enable-consumer-management"; 86 const char kEnableConsumerManagement[] = "enable-consumer-management";
87 87
88 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint 88 // If this switch is set, Chrome OS login screen uses |EmbeddedSignin| endpoint
89 // of GAIA. 89 // of GAIA.
90 const char kEnableEmbeddedSignin[] = "enable-embedded-signin"; 90 const char kEnableEmbeddedSignin[] = "enable-embedded-signin";
91 91
92 // If this switch is set, the new Korean IME will be available in
93 // chrome://settings/languages.
94 const char kEnableNewKoreanIme[] = "enable-new-korean-ime";
95
96 // If this switch is set, the US keyboard input method will provide suggestions
97 // as typing on physical keyboard.
98 const char kEnablePhysicalKeyboardAutocorrect[] =
99 "enable-physical-keyboard-autocorrect";
100
92 // Enabled sharing assets for installed default apps. 101 // Enabled sharing assets for installed default apps.
93 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; 102 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing";
94 103
95 // Enables notifications about captive portals in session. 104 // Enables notifications about captive portals in session.
96 const char kEnableNetworkPortalNotification[] = 105 const char kEnableNetworkPortalNotification[] =
97 "enable-network-portal-notification"; 106 "enable-network-portal-notification";
98 107
99 // Enables touchpad three-finger-click as middle button. 108 // Enables touchpad three-finger-click as middle button.
100 const char kEnableTouchpadThreeFingerClick[] 109 const char kEnableTouchpadThreeFingerClick[]
101 = "enable-touchpad-three-finger-click"; 110 = "enable-touchpad-three-finger-click";
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 249
241 // Screenshot testing: specifies the directory where the golden screenshots are 250 // Screenshot testing: specifies the directory where the golden screenshots are
242 // stored. 251 // stored.
243 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; 252 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir";
244 253
245 // Screenshot testing: specifies the directoru where artifacts will be stored. 254 // Screenshot testing: specifies the directoru where artifacts will be stored.
246 const char kArtifactsDir[] = "artifacts-dir"; 255 const char kArtifactsDir[] = "artifacts-dir";
247 256
248 } // namespace switches 257 } // namespace switches
249 } // namespace chromeos 258 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698