 Chromium Code Reviews
 Chromium Code Reviews Issue 2765373002:
  CrOS: Move force UI mode switch from switches to ash switches.  (Closed)
    
  
    Issue 2765373002:
  CrOS: Move force UI mode switch from switches to ash switches.  (Closed) 
  | Index: ash/common/ash_switches.cc | 
| diff --git a/ash/common/ash_switches.cc b/ash/common/ash_switches.cc | 
| index e096ad34915bd660270ea80516c5f45f1651c83e..3716c04ccf25fa32ed770580c0393c73f6279c32 100644 | 
| --- a/ash/common/ash_switches.cc | 
| +++ b/ash/common/ash_switches.cc | 
| @@ -69,6 +69,15 @@ const char kAshEstimatedPresentationDelay[] = | 
| // Enables the palette next to the status area. | 
| const char kAshForceEnablePalette[] = "ash-force-enable-palette"; | 
| +// Enables required things for the selected UI mode, regardless of whether the | 
| +// chromebook is currently in the selected UI mode. | 
| 
Daniel Erat
2017/03/28 19:30:12
nit: Chromebook
 
sammiequon
2017/03/28 20:32:00
Done.
 | 
| +const char kAshForceTabletMode[] = "force-tablet-mode"; | 
| + | 
| +// Values for the kAshForceTabletMode flag. | 
| +const char kAshForceTabletModeAuto[] = "auto"; | 
| +const char kAshForceTabletModeClamshell[] = "clamshell"; | 
| +const char kAshForceTabletModeTouchView[] = "touch_view"; | 
| + | 
| // Hides notifications that are irrelevant to Chrome OS device factory testing, | 
| // such as battery level updates. | 
| const char kAshHideNotificationsForFactory[] = |