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

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

Issue 146363002: Linux Aura: Use system title bar is now set by preference, not flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert adding argument to FrameTypeChanged everywhere (thanks sky). Created 6 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
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 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 extern const char kTrustedSpdyProxy[]; 390 extern const char kTrustedSpdyProxy[];
391 extern const char kTryChromeAgain[]; 391 extern const char kTryChromeAgain[];
392 extern const char kUninstallExtension[]; 392 extern const char kUninstallExtension[];
393 extern const char kUninstall[]; 393 extern const char kUninstall[];
394 extern const char kUnlimitedStorage[]; 394 extern const char kUnlimitedStorage[];
395 extern const char kUseSimpleCacheBackend[]; 395 extern const char kUseSimpleCacheBackend[];
396 extern const char kUseSpdy[]; 396 extern const char kUseSpdy[];
397 extern const char kUseSpellingSuggestions[]; 397 extern const char kUseSpellingSuggestions[];
398 extern const char kMaxSpdyConcurrentStreams[]; 398 extern const char kMaxSpdyConcurrentStreams[];
399 extern const char kUserDataDir[]; 399 extern const char kUserDataDir[];
400 extern const char kUseSystemTitleBar[];
401 extern const char kValidateCrx[]; 400 extern const char kValidateCrx[];
402 extern const char kVariationsServerURL[]; 401 extern const char kVariationsServerURL[];
403 extern const char kVersion[]; 402 extern const char kVersion[];
404 extern const char kWhitelistedExtensionID[]; 403 extern const char kWhitelistedExtensionID[];
405 extern const char kWindowPosition[]; 404 extern const char kWindowPosition[];
406 extern const char kWindowSize[]; 405 extern const char kWindowSize[];
407 extern const char kWinHttpProxyResolver[]; 406 extern const char kWinHttpProxyResolver[];
408 407
409 #if defined(ENABLE_PLUGIN_INSTALLATION) 408 #if defined(ENABLE_PLUGIN_INSTALLATION)
410 extern const char kPluginsMetadataServerURL[]; 409 extern const char kPluginsMetadataServerURL[];
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 #else 475 #else
477 extern const char kEnablePrintPreview[]; 476 extern const char kEnablePrintPreview[];
478 #endif 477 #endif
479 478
480 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 479 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
481 // alphabetical order, or in one of the ifdefs (also in order in each section). 480 // alphabetical order, or in one of the ifdefs (also in order in each section).
482 481
483 } // namespace switches 482 } // namespace switches
484 483
485 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 484 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698