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

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

Issue 10086011: [Chrome OS ECHO]: Rename API and method names (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: address tbarzic's comments Created 8 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
1261 // Specifies the user which is already logged in. 1261 // Specifies the user which is already logged in.
1262 const char kLoginUser[] = "login-user"; 1262 const char kLoginUser[] = "login-user";
1263 1263
1264 // Specifies a password to be used to login (along with login-user). 1264 // Specifies a password to be used to login (along with login-user).
1265 const char kLoginPassword[] = "login-password"; 1265 const char kLoginPassword[] = "login-password";
1266 1266
1267 // Indicates that the browser is in "browse without sign-in" (Guest session) 1267 // Indicates that the browser is in "browse without sign-in" (Guest session)
1268 // mode. Should completely disable extensions, sync and bookmarks. 1268 // mode. Should completely disable extensions, sync and bookmarks.
1269 const char kGuestSession[] = "bwsi"; 1269 const char kGuestSession[] = "bwsi";
1270 1270
1271 // Enables overriding the path for the default offers component extension. 1271 // Enables overriding the path for the default echo component extension.
1272 // Useful for testing. 1272 // Useful for testing.
1273 const char kOffersExtensionPath[] = "offers-ext-path"; 1273 const char kEchoExtensionPath[] = "echo-ext-path";
1274 1274
1275 // Show volume controls in status bar on ChromeOS. 1275 // Show volume controls in status bar on ChromeOS.
1276 const char kShowVolumeStatus[] = "show-volume-status"; 1276 const char kShowVolumeStatus[] = "show-volume-status";
1277 1277
1278 // Indicates that stub implementations of the libcros library should be used. 1278 // Indicates that stub implementations of the libcros library should be used.
1279 // This is typically used to test the chromeos build of chrome on the desktop. 1279 // This is typically used to test the chromeos build of chrome on the desktop.
1280 const char kStubCros[] = "stub-cros"; 1280 const char kStubCros[] = "stub-cros";
1281 1281
1282 // Indicates that a stub implementation of CrosSettings that stores settings in 1282 // Indicates that a stub implementation of CrosSettings that stores settings in
1283 // memory without signing should be used, treating current user as the owner. 1283 // memory without signing should be used, treating current user as the owner.
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 1384
1385 // ----------------------------------------------------------------------------- 1385 // -----------------------------------------------------------------------------
1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1387 // 1387 //
1388 // You were going to just dump your switches here, weren't you? Instead, please 1388 // You were going to just dump your switches here, weren't you? Instead, please
1389 // put them in alphabetical order above, or in order inside the appropriate 1389 // put them in alphabetical order above, or in order inside the appropriate
1390 // ifdef at the bottom. The order should match the header. 1390 // ifdef at the bottom. The order should match the header.
1391 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1392 1392
1393 } // namespace switches 1393 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698