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

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, 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 "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, there are some experimental IMEs or IME features will
93 // be enabled in Chrome OS.
94 const char kEnableExperimentalImeFeatures[] =
95 "enable-experimental-ime-features";
96
92 // Enabled sharing assets for installed default apps. 97 // Enabled sharing assets for installed default apps.
93 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing"; 98 const char kEnableExtensionAssetsSharing[] = "enable-extension-assets-sharing";
94 99
95 // Enables notifications about captive portals in session. 100 // Enables notifications about captive portals in session.
96 const char kEnableNetworkPortalNotification[] = 101 const char kEnableNetworkPortalNotification[] =
97 "enable-network-portal-notification"; 102 "enable-network-portal-notification";
98 103
99 // Enables touchpad three-finger-click as middle button. 104 // Enables touchpad three-finger-click as middle button.
100 const char kEnableTouchpadThreeFingerClick[] 105 const char kEnableTouchpadThreeFingerClick[]
101 = "enable-touchpad-three-finger-click"; 106 = "enable-touchpad-three-finger-click";
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 245
241 // Screenshot testing: specifies the directory where the golden screenshots are 246 // Screenshot testing: specifies the directory where the golden screenshots are
242 // stored. 247 // stored.
243 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir"; 248 const char kGoldenScreenshotsDir[] = "golden-screenshots-dir";
244 249
245 // Screenshot testing: specifies the directoru where artifacts will be stored. 250 // Screenshot testing: specifies the directoru where artifacts will be stored.
246 const char kArtifactsDir[] = "artifacts-dir"; 251 const char kArtifactsDir[] = "artifacts-dir";
247 252
248 } // namespace switches 253 } // namespace switches
249 } // namespace chromeos 254 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698