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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 200473002: Move all callers of GetHomeDir() to PathService::Get(base::DIR_HOME). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move subprocess homedir override to ChromeContentBrowserClient/ChromeMainDelegate Created 6 years, 8 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 "chromeos/chromeos_switches.h" 5 #include "chromeos/chromeos_switches.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 namespace switches { 8 namespace switches {
9 9
10 // Path for app's OEM manifest file. 10 // Path for app's OEM manifest file.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 // mode. Should completely disable extensions, sync and bookmarks. 122 // mode. Should completely disable extensions, sync and bookmarks.
123 const char kGuestSession[] = "bwsi"; 123 const char kGuestSession[] = "bwsi";
124 124
125 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for 125 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for
126 // Chromeboxes. 126 // Chromeboxes.
127 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; 127 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard";
128 128
129 // If true, the Chromebook has a keyboard with a diamond key. 129 // If true, the Chromebook has a keyboard with a diamond key.
130 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key"; 130 const char kHasChromeOSDiamondKey[] = "has-chromeos-diamond-key";
131 131
132 // Defines user homedir. This defaults to primary user homedir.
133 const char kHomedir[] = "homedir";
134
132 // Path for the screensaver used in Kiosk mode 135 // Path for the screensaver used in Kiosk mode
133 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; 136 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path";
134 137
135 // Allows override of oobe for testing - goes directly to the login screen. 138 // Allows override of oobe for testing - goes directly to the login screen.
136 const char kLoginScreen[] = "login-screen"; 139 const char kLoginScreen[] = "login-screen";
137 140
138 // Enables Chrome-as-a-login-manager behavior. 141 // Enables Chrome-as-a-login-manager behavior.
139 const char kLoginManager[] = "login-manager"; 142 const char kLoginManager[] = "login-manager";
140 143
141 // Specifies a password to be used to login (along with login-user). 144 // Specifies a password to be used to login (along with login-user).
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions"; 199 const char kEnableFirstRunUITransitions[] = "enable-first-run-ui-transitions";
197 200
198 // Forces first-run UI to be shown for every login. 201 // Forces first-run UI to be shown for every login.
199 const char kForceFirstRunUI[] = "force-first-run-ui"; 202 const char kForceFirstRunUI[] = "force-first-run-ui";
200 203
201 // Enables testing for auto update UI. 204 // Enables testing for auto update UI.
202 const char kTestAutoUpdateUI[] = "test-auto-update-ui"; 205 const char kTestAutoUpdateUI[] = "test-auto-update-ui";
203 206
204 } // namespace switches 207 } // namespace switches
205 } // namespace chromeos 208 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698