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

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

Issue 9455038: Screensaver at login screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 // Enables bluetooth support on ChromeOS. 1160 // Enables bluetooth support on ChromeOS.
1161 const char kEnableBluetooth[] = "enable-bluetooth"; 1161 const char kEnableBluetooth[] = "enable-bluetooth";
1162 1162
1163 // Enables device policy support on ChromeOS. 1163 // Enables device policy support on ChromeOS.
1164 const char kEnableDevicePolicy[] = "enable-device-policy"; 1164 const char kEnableDevicePolicy[] = "enable-device-policy";
1165 1165
1166 // Enables the redirection of viewable document requests to the Google Document 1166 // Enables the redirection of viewable document requests to the Google Document
1167 // Viewer. 1167 // Viewer.
1168 const char kEnableGView[] = "enable-gview"; 1168 const char kEnableGView[] = "enable-gview";
1169 1169
1170 // Enable Kiosk mode for ChromeOS
1171 const char kEnableKioskMode[] = "enable-kiosk-mode";
1172
1170 // Enables mobile setup in a dialog. 1173 // Enables mobile setup in a dialog.
1171 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; 1174 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog";
1172 1175
1173 // Enables support for policy-configured networks. 1176 // Enables support for policy-configured networks.
1174 const char kEnableONCPolicy[] = "enable-onc-policy"; 1177 const char kEnableONCPolicy[] = "enable-onc-policy";
1175 1178
1176 // Rotates the screen in response to orientation changed events from dbus. Will 1179 // Rotates the screen in response to orientation changed events from dbus. Will
1177 // be reused for more generic sensors. 1180 // be reused for more generic sensors.
1178 const char kEnableSensors[] = "enable-sensors"; 1181 const char kEnableSensors[] = "enable-sensors";
1179 1182
1180 // Enables static ip configuration. This flag should be removed when it's on by 1183 // Enables static ip configuration. This flag should be removed when it's on by
1181 // default. 1184 // default.
1182 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; 1185 const char kEnableStaticIPConfig[] = "enable-static-ip-config";
1183 1186
1187 // Path for the screensaver used in Kiosk mode
1188 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path";
1189
1184 // Enables Chrome-as-a-login-manager behavior. 1190 // Enables Chrome-as-a-login-manager behavior.
1185 const char kLoginManager[] = "login-manager"; 1191 const char kLoginManager[] = "login-manager";
1186 1192
1187 // Allows to override the first login screen. The value should be the name of 1193 // Allows to override the first login screen. The value should be the name of
1188 // the first login screen to show (see 1194 // the first login screen to show (see
1189 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names). 1195 // chrome/browser/chromeos/login/login_wizard_view.cc for actual names).
1190 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the 1196 // Ignored if kLoginManager is not specified. TODO(avayvod): Remove when the
1191 // switch is no longer needed for testing. 1197 // switch is no longer needed for testing.
1192 const char kLoginScreen[] = "login-screen"; 1198 const char kLoginScreen[] = "login-screen";
1193 1199
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 1333
1328 // ----------------------------------------------------------------------------- 1334 // -----------------------------------------------------------------------------
1329 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1335 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1330 // 1336 //
1331 // You were going to just dump your switches here, weren't you? Instead, please 1337 // You were going to just dump your switches here, weren't you? Instead, please
1332 // put them in alphabetical order above, or in order inside the appropriate 1338 // put them in alphabetical order above, or in order inside the appropriate
1333 // ifdef at the bottom. The order should match the header. 1339 // ifdef at the bottom. The order should match the header.
1334 // ----------------------------------------------------------------------------- 1340 // -----------------------------------------------------------------------------
1335 1341
1336 } // namespace switches 1342 } // namespace switches
OLDNEW
« chrome/browser/ui/views/screensaver_extension_dialog.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698