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

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

Issue 10574040: Remove chromeos::LibraryLoader (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix Created 8 years, 6 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | 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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 // mode. Should completely disable extensions, sync and bookmarks. 1363 // mode. Should completely disable extensions, sync and bookmarks.
1364 const char kGuestSession[] = "bwsi"; 1364 const char kGuestSession[] = "bwsi";
1365 1365
1366 // Enables overriding the path for the default echo component extension. 1366 // Enables overriding the path for the default echo component extension.
1367 // Useful for testing. 1367 // Useful for testing.
1368 const char kEchoExtensionPath[] = "echo-ext-path"; 1368 const char kEchoExtensionPath[] = "echo-ext-path";
1369 1369
1370 // Show volume controls in status bar on ChromeOS. 1370 // Show volume controls in status bar on ChromeOS.
1371 const char kShowVolumeStatus[] = "show-volume-status"; 1371 const char kShowVolumeStatus[] = "show-volume-status";
1372 1372
1373 // Indicates that stub implementations of the libcros library should be used.
1374 // This is typically used to test the chromeos build of chrome on the desktop.
1375 const char kStubCros[] = "stub-cros";
1376
1377 // Indicates that a stub implementation of CrosSettings that stores settings in 1373 // Indicates that a stub implementation of CrosSettings that stores settings in
1378 // memory without signing should be used, treating current user as the owner. 1374 // memory without signing should be used, treating current user as the owner.
1379 // This option is for testing the chromeos build of chrome on the desktop only. 1375 // This option is for testing the chromeos build of chrome on the desktop only.
1380 const char kStubCrosSettings[] = "stub-cros-settings"; 1376 const char kStubCrosSettings[] = "stub-cros-settings";
1381 1377
1382 // Triggers ChromeOS system log compression during feedback submit. 1378 // Triggers ChromeOS system log compression during feedback submit.
1383 const char kCompressSystemFeedback[] = "compress-sys-feedback"; 1379 const char kCompressSystemFeedback[] = "compress-sys-feedback";
1384 1380
1385 // Enables overriding the path for the default authentication extension. 1381 // Enables overriding the path for the default authentication extension.
1386 const char kAuthExtensionPath[] = "auth-ext-path"; 1382 const char kAuthExtensionPath[] = "auth-ext-path";
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 1471
1476 // ----------------------------------------------------------------------------- 1472 // -----------------------------------------------------------------------------
1477 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1473 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1478 // 1474 //
1479 // You were going to just dump your switches here, weren't you? Instead, please 1475 // You were going to just dump your switches here, weren't you? Instead, please
1480 // put them in alphabetical order above, or in order inside the appropriate 1476 // put them in alphabetical order above, or in order inside the appropriate
1481 // ifdef at the bottom. The order should match the header. 1477 // ifdef at the bottom. The order should match the header.
1482 // ----------------------------------------------------------------------------- 1478 // -----------------------------------------------------------------------------
1483 1479
1484 } // namespace switches 1480 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698