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

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

Issue 6581004: Add command line switches and about:flag to enable FPS indicator and compositor layer tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes based on feedback Created 9 years, 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 extern const char kSbInfoURLPrefix[]; 308 extern const char kSbInfoURLPrefix[];
309 extern const char kSbMacKeyURLPrefix[]; 309 extern const char kSbMacKeyURLPrefix[];
310 extern const char kSbDisableAutoUpdate[]; 310 extern const char kSbDisableAutoUpdate[];
311 extern const char kSbEnableDownloadProtection[]; 311 extern const char kSbEnableDownloadProtection[];
312 extern const char kSbEnableDownloadWarningUI[]; 312 extern const char kSbEnableDownloadWarningUI[];
313 extern const char kSdchFilter[]; 313 extern const char kSdchFilter[];
314 extern const char kSearchInOmniboxHint[]; 314 extern const char kSearchInOmniboxHint[];
315 extern const char kServiceProcess[]; 315 extern const char kServiceProcess[];
316 extern const char kServiceAccountLsid[]; 316 extern const char kServiceAccountLsid[];
317 extern const char kShowCompositedLayerBorders[]; 317 extern const char kShowCompositedLayerBorders[];
318 extern const char kShowCompositedLayerTree[];
319 extern const char kShowFPSCounter[];
318 extern const char kShowIcons[]; 320 extern const char kShowIcons[];
319 extern const char kShowPaintRects[]; 321 extern const char kShowPaintRects[];
320 extern const char kSilentDumpOnDCHECK[]; 322 extern const char kSilentDumpOnDCHECK[];
321 extern const char kSimpleDataSource[]; 323 extern const char kSimpleDataSource[];
322 extern const char kSingleProcess[]; 324 extern const char kSingleProcess[];
323 extern const char kStartMaximized[]; 325 extern const char kStartMaximized[];
324 extern const char kSyncAllowInsecureXmppConnection[]; 326 extern const char kSyncAllowInsecureXmppConnection[];
325 extern const char kSyncInvalidateXmppLogin[]; 327 extern const char kSyncInvalidateXmppLogin[];
326 extern const char kSyncerThreadTimedStop[]; 328 extern const char kSyncerThreadTimedStop[];
327 extern const char kSyncNotificationMethod[]; 329 extern const char kSyncNotificationMethod[];
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 440
439 // Return true if the switches indicate the seccomp sandbox is enabled. 441 // Return true if the switches indicate the seccomp sandbox is enabled.
440 bool SeccompSandboxEnabled(); 442 bool SeccompSandboxEnabled();
441 443
442 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 444 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
443 // alphabetical order, or in one of the ifdefs (also in order in each section). 445 // alphabetical order, or in one of the ifdefs (also in order in each section).
444 446
445 } // namespace switches 447 } // namespace switches
446 448
447 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 449 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698