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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 2640123004: Initial support for native accessibility in ARC (Closed)
Patch Set: Experimental changes Created 3 years, 10 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 #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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 210
211 // Enables the Android Wallpapers App as the default app on Chrome OS. 211 // Enables the Android Wallpapers App as the default app on Chrome OS.
212 const char kEnableAndroidWallpapersApp[] = "enable-android-wallpapers-app"; 212 const char kEnableAndroidWallpapersApp[] = "enable-android-wallpapers-app";
213 213
214 // Enables starting the ARC instance upon session start. 214 // Enables starting the ARC instance upon session start.
215 const char kEnableArc[] = "enable-arc"; 215 const char kEnableArc[] = "enable-arc";
216 216
217 // Enables ARC OptIn flow in OOBE. 217 // Enables ARC OptIn flow in OOBE.
218 const char kEnableArcOOBEOptIn[] = "enable-arc-oobe-optin"; 218 const char kEnableArcOOBEOptIn[] = "enable-arc-oobe-optin";
219 219
220 // Enables native ChromeVox support for Arc.
221 const char kEnableChromeVoxArcSupport[] = "enable-chromevox-arc-support";
222
220 // Enables consume kiosk mode. 223 // Enables consume kiosk mode.
221 const char kEnableConsumerKiosk[] = "enable-consumer-kiosk"; 224 const char kEnableConsumerKiosk[] = "enable-consumer-kiosk";
222 225
223 // Enables Data Saver prompt on cellular networks. 226 // Enables Data Saver prompt on cellular networks.
224 const char kEnableDataSaverPrompt[] = "enable-datasaver-prompt"; 227 const char kEnableDataSaverPrompt[] = "enable-datasaver-prompt";
225 228
226 // Shows additional checkboxes in Settings to enable Chrome OS accessibility 229 // Shows additional checkboxes in Settings to enable Chrome OS accessibility
227 // features that haven't launched yet. 230 // features that haven't launched yet.
228 const char kEnableExperimentalAccessibilityFeatures[] = 231 const char kEnableExperimentalAccessibilityFeatures[] =
229 "enable-experimental-accessibility-features"; 232 "enable-experimental-accessibility-features";
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); 479 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
477 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration)) 480 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration))
478 return false; 481 return false;
479 482
480 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == 483 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) ==
481 kTestCrosGaiaIdMigrationStarted; 484 kTestCrosGaiaIdMigrationStarted;
482 } 485 }
483 486
484 } // namespace switches 487 } // namespace switches
485 } // namespace chromeos 488 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698