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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 9265026: Implement restart on Idle for Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge. Created 8 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 | Annotate | Revision Log
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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
1195 1195
1196 // Whether to show the image-based login. 1196 // Whether to show the image-based login.
1197 const char kEnableLoginImages[] = "enable-login-images"; 1197 const char kEnableLoginImages[] = "enable-login-images";
1198 1198
1199 // Enables mobile setup in a dialog. 1199 // Enables mobile setup in a dialog.
1200 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; 1200 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog";
1201 1201
1202 // Enables support for policy-configured networks. 1202 // Enables support for policy-configured networks.
1203 const char kEnableONCPolicy[] = "enable-onc-policy"; 1203 const char kEnableONCPolicy[] = "enable-onc-policy";
1204 1204
1205 const char kEnableRetailMode[] = "enable-retail-mode";
1206
1205 // Rotates the screen in response to orientation changed events from dbus. Will 1207 // Rotates the screen in response to orientation changed events from dbus. Will
1206 // be reused for more generic sensors. 1208 // be reused for more generic sensors.
1207 const char kEnableSensors[] = "enable-sensors"; 1209 const char kEnableSensors[] = "enable-sensors";
1208 1210
1209 // Enables static ip configuration. This flag should be removed when it's on by 1211 // Enables static ip configuration. This flag should be removed when it's on by
1210 // default. 1212 // default.
1211 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; 1213 const char kEnableStaticIPConfig[] = "enable-static-ip-config";
1212 1214
1213 // Enables Chrome-as-a-login-manager behavior. 1215 // Enables Chrome-as-a-login-manager behavior.
1214 const char kLoginManager[] = "login-manager"; 1216 const char kLoginManager[] = "login-manager";
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1367 1369
1368 // ----------------------------------------------------------------------------- 1370 // -----------------------------------------------------------------------------
1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1370 // 1372 //
1371 // You were going to just dump your switches here, weren't you? Instead, please 1373 // You were going to just dump your switches here, weren't you? Instead, please
1372 // put them in alphabetical order above, or in order inside the appropriate 1374 // put them in alphabetical order above, or in order inside the appropriate
1373 // ifdef at the bottom. The order should match the header. 1375 // ifdef at the bottom. The order should match the header.
1374 // ----------------------------------------------------------------------------- 1376 // -----------------------------------------------------------------------------
1375 1377
1376 } // namespace switches 1378 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698