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

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

Issue 9169033: Support for showing/hiding status area volume controls in desktop devices (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase 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
« 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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 // Attempts to perform Chrome OS offline and online login in parallel. 1256 // Attempts to perform Chrome OS offline and online login in parallel.
1257 const char kParallelAuth[] = "parallel-auth"; 1257 const char kParallelAuth[] = "parallel-auth";
1258 1258
1259 // Uses the given language for UI in the input method candidate window. 1259 // Uses the given language for UI in the input method candidate window.
1260 const char kCandidateWindowLang[] = "lang"; 1260 const char kCandidateWindowLang[] = "lang";
1261 1261
1262 // Indicates that the browser is in "browse without sign-in" (Guest session) 1262 // Indicates that the browser is in "browse without sign-in" (Guest session)
1263 // mode. Should completely disable extensions, sync and bookmarks. 1263 // mode. Should completely disable extensions, sync and bookmarks.
1264 const char kGuestSession[] = "bwsi"; 1264 const char kGuestSession[] = "bwsi";
1265 1265
1266 // Show volume controls in status bar on ChromeOS.
1267 const char kShowVolumeStatus[] = "show-volume-status";
1268
1266 // Indicates that stub implementations of the libcros library should be used. 1269 // Indicates that stub implementations of the libcros library should be used.
1267 // This is typically used to test the chromeos build of chrome on the desktop. 1270 // This is typically used to test the chromeos build of chrome on the desktop.
1268 const char kStubCros[] = "stub-cros"; 1271 const char kStubCros[] = "stub-cros";
1269 1272
1270 // Indicates that a stub implementation of CrosSettings that stores settings in 1273 // Indicates that a stub implementation of CrosSettings that stores settings in
1271 // memory without signing should be used, treating current user as the owner. 1274 // memory without signing should be used, treating current user as the owner.
1272 // This option is for testing the chromeos build of chrome on the desktop only. 1275 // This option is for testing the chromeos build of chrome on the desktop only.
1273 const char kStubCrosSettings[] = "stub-cros-settings"; 1276 const char kStubCrosSettings[] = "stub-cros-settings";
1274 1277
1275 // URL of the html page for Screen Saver. 1278 // URL of the html page for Screen Saver.
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 1384
1382 // ----------------------------------------------------------------------------- 1385 // -----------------------------------------------------------------------------
1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1386 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1384 // 1387 //
1385 // 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
1386 // 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
1387 // ifdef at the bottom. The order should match the header. 1390 // ifdef at the bottom. The order should match the header.
1388 // ----------------------------------------------------------------------------- 1391 // -----------------------------------------------------------------------------
1389 1392
1390 } // namespace switches 1393 } // 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