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

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

Issue 9169033: Support for showing/hiding status area volume controls in desktop devices (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: lint errors Created 8 years, 11 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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 extern const char kSbDisableAutoUpdate[]; 282 extern const char kSbDisableAutoUpdate[];
283 extern const char kSbDisableDownloadProtection[]; 283 extern const char kSbDisableDownloadProtection[];
284 extern const char kSearchInOmniboxHint[]; 284 extern const char kSearchInOmniboxHint[];
285 extern const char kServiceAccountLsid[]; 285 extern const char kServiceAccountLsid[];
286 extern const char kSetToken[]; 286 extern const char kSetToken[];
287 extern const char kShowAutofillTypePredictions[]; 287 extern const char kShowAutofillTypePredictions[];
288 extern const char kShowComponentExtensionOptions[]; 288 extern const char kShowComponentExtensionOptions[];
289 extern const char kShowCompositedLayerBorders[]; 289 extern const char kShowCompositedLayerBorders[];
290 extern const char kShowCompositedLayerTree[]; 290 extern const char kShowCompositedLayerTree[];
291 extern const char kShowFPSCounter[]; 291 extern const char kShowFPSCounter[];
292 extern const char kShowVolumeStatus[];
xiyuan 2012/01/25 04:43:12 Should this go with other chromeos only switches?
achuithb 2012/01/25 10:46:06 Done.
292 extern const char kShowIcons[]; 293 extern const char kShowIcons[];
293 extern const char kSilentDumpOnDCHECK[]; 294 extern const char kSilentDumpOnDCHECK[];
294 extern const char kSocketReusePolicy[]; 295 extern const char kSocketReusePolicy[];
295 extern const char kStartMaximized[]; 296 extern const char kStartMaximized[];
296 extern const char kSyncAllowInsecureXmppConnection[]; 297 extern const char kSyncAllowInsecureXmppConnection[];
297 extern const char kSyncInvalidateXmppLogin[]; 298 extern const char kSyncInvalidateXmppLogin[];
298 extern const char kSyncerThreadTimedStop[]; 299 extern const char kSyncerThreadTimedStop[];
299 extern const char kSyncNotificationMethod[]; 300 extern const char kSyncNotificationMethod[];
300 extern const char kSyncNotificationHost[]; 301 extern const char kSyncNotificationHost[];
301 extern const char kSyncServiceURL[]; 302 extern const char kSyncServiceURL[];
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 #if defined(USE_AURA) 397 #if defined(USE_AURA)
397 extern const char kTestCompositor[]; 398 extern const char kTestCompositor[];
398 #endif 399 #endif
399 400
400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 401 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
401 // alphabetical order, or in one of the ifdefs (also in order in each section). 402 // alphabetical order, or in one of the ifdefs (also in order in each section).
402 403
403 } // namespace switches 404 } // namespace switches
404 405
405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 406 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698