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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 2731403007: add voice interaction shortcut. (Closed)
Patch Set: addressed review comments Created 3 years, 9 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
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/metrics/field_trial.h" 10 #include "base/metrics/field_trial.h"
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 "enable-touchpad-three-finger-click"; 297 "enable-touchpad-three-finger-click";
298 298
299 // Enables touch support for screen magnifier. 299 // Enables touch support for screen magnifier.
300 const char kEnableTouchSupportForScreenMagnifier[] = 300 const char kEnableTouchSupportForScreenMagnifier[] =
301 "enable-touch-support-for-screen-magnifier"; 301 "enable-touch-support-for-screen-magnifier";
302 302
303 // Enables the chromecast support for video player app. 303 // Enables the chromecast support for video player app.
304 const char kEnableVideoPlayerChromecastSupport[] = 304 const char kEnableVideoPlayerChromecastSupport[] =
305 "enable-video-player-chromecast-support"; 305 "enable-video-player-chromecast-support";
306 306
307 // Enables the VoiceInteraction support.
308 const char kEnableVoiceInteraction[] = "enable-voice-interaction";
309
307 // Disables ARC for managed accounts. 310 // Disables ARC for managed accounts.
308 const char kEnterpriseDisableArc[] = "enterprise-disable-arc"; 311 const char kEnterpriseDisableArc[] = "enterprise-disable-arc";
309 312
310 // Whether to enable forced enterprise re-enrollment. 313 // Whether to enable forced enterprise re-enrollment.
311 const char kEnterpriseEnableForcedReEnrollment[] = 314 const char kEnterpriseEnableForcedReEnrollment[] =
312 "enterprise-enable-forced-re-enrollment"; 315 "enterprise-enable-forced-re-enrollment";
313 316
314 // Enables the zero-touch enterprise enrollment flow. 317 // Enables the zero-touch enterprise enrollment flow.
315 const char kEnterpriseEnableZeroTouchEnrollment[] = 318 const char kEnterpriseEnableZeroTouchEnrollment[] =
316 "enterprise-enable-zero-touch-enrollment"; 319 "enterprise-enable-zero-touch-enrollment";
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == 515 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) ==
513 kTestCrosGaiaIdMigrationStarted; 516 kTestCrosGaiaIdMigrationStarted;
514 } 517 }
515 518
516 bool IsCellularFirstDevice() { 519 bool IsCellularFirstDevice() {
517 return base::CommandLine::ForCurrentProcess()->HasSwitch(kCellularFirst); 520 return base::CommandLine::ForCurrentProcess()->HasSwitch(kCellularFirst);
518 } 521 }
519 522
520 } // namespace switches 523 } // namespace switches
521 } // namespace chromeos 524 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | components/arc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698