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

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

Issue 12684010: Add simple cache backend experiment hidden behind a flag. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 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
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 extern const char kTabBrowserDragging[]; 354 extern const char kTabBrowserDragging[];
355 extern const char kTabCapture[]; 355 extern const char kTabCapture[];
356 extern const char kTestNaClSandbox[]; 356 extern const char kTestNaClSandbox[];
357 extern const char kTestName[]; 357 extern const char kTestName[];
358 extern const char kTestType[]; 358 extern const char kTestType[];
359 extern const char kTestingChannelID[]; 359 extern const char kTestingChannelID[];
360 extern const char kTrackActiveVisitTime[]; 360 extern const char kTrackActiveVisitTime[];
361 extern const char kTrustedSpdyProxy[]; 361 extern const char kTrustedSpdyProxy[];
362 extern const char kTryChromeAgain[]; 362 extern const char kTryChromeAgain[];
363 extern const char kUninstall[]; 363 extern const char kUninstall[];
364 extern const char kUseSimpleCacheBackend[];
364 extern const char kUseSpdy[]; 365 extern const char kUseSpdy[];
365 extern const char kUseSpellingSuggestions[]; 366 extern const char kUseSpellingSuggestions[];
366 extern const char kMaxSpdySessionsPerDomain[]; 367 extern const char kMaxSpdySessionsPerDomain[];
367 extern const char kMaxSpdyConcurrentStreams[]; 368 extern const char kMaxSpdyConcurrentStreams[];
368 extern const char kUserDataDir[]; 369 extern const char kUserDataDir[];
369 extern const char kUseClientLoginSigninFlow[]; 370 extern const char kUseClientLoginSigninFlow[];
370 extern const char kVariationsServerURL[]; 371 extern const char kVariationsServerURL[];
371 extern const char kVersion[]; 372 extern const char kVersion[];
372 extern const char kViewerConnection[]; 373 extern const char kViewerConnection[];
373 extern const char kVisitURLs[]; 374 extern const char kVisitURLs[];
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 #else 478 #else
478 extern const char kEnablePrintPreview[]; 479 extern const char kEnablePrintPreview[];
479 #endif 480 #endif
480 481
481 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 482 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
482 // alphabetical order, or in one of the ifdefs (also in order in each section). 483 // alphabetical order, or in one of the ifdefs (also in order in each section).
483 484
484 } // namespace switches 485 } // namespace switches
485 486
486 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 487 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698