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

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

Issue 64803005: File association for app shims. (Mac) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Redo after refactoring. Put behind flag. Tests. Created 6 years, 8 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 extern const char kDisableZeroBrowsersOpenForTests[]; 125 extern const char kDisableZeroBrowsersOpenForTests[];
126 extern const char kDiskCacheDir[]; 126 extern const char kDiskCacheDir[];
127 extern const char kDiskCacheSize[]; 127 extern const char kDiskCacheSize[];
128 extern const char kDnsLogDetails[]; 128 extern const char kDnsLogDetails[];
129 extern const char kDnsPrefetchDisable[]; 129 extern const char kDnsPrefetchDisable[];
130 extern const char kDumpBrowserHistograms[]; 130 extern const char kDumpBrowserHistograms[];
131 extern const char kEasyUnlockAppPath[]; 131 extern const char kEasyUnlockAppPath[];
132 extern const char kEnableAdview[]; 132 extern const char kEnableAdview[];
133 extern const char kEnableAppList[]; 133 extern const char kEnableAppList[];
134 extern const char kEnableAppWindowControls[]; 134 extern const char kEnableAppWindowControls[];
135 extern const char kEnableAppsFileAssociations[];
135 extern const char kEnableAppsShowOnFirstPaint[]; 136 extern const char kEnableAppsShowOnFirstPaint[];
136 extern const char kEnableAsyncDns[]; 137 extern const char kEnableAsyncDns[];
137 extern const char kEnableAuthNegotiatePort[]; 138 extern const char kEnableAuthNegotiatePort[];
138 extern const char kEnableAutologin[]; 139 extern const char kEnableAutologin[];
139 extern const char kEnableAutomationAPI[]; 140 extern const char kEnableAutomationAPI[];
140 extern const char kEnableBenchmarking[]; 141 extern const char kEnableBenchmarking[];
141 extern const char kEnableClientHints[]; 142 extern const char kEnableClientHints[];
142 extern const char kEnableBookmarkUndo[]; 143 extern const char kEnableBookmarkUndo[];
143 extern const char kEnableCloudPrintProxy[]; 144 extern const char kEnableCloudPrintProxy[];
144 extern const char kEnableDevToolsExperiments[]; 145 extern const char kEnableDevToolsExperiments[];
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 #else 437 #else
437 extern const char kEnablePrintPreview[]; 438 extern const char kEnablePrintPreview[];
438 #endif 439 #endif
439 440
440 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 441 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
441 // alphabetical order, or in one of the ifdefs (also in order in each section). 442 // alphabetical order, or in one of the ifdefs (also in order in each section).
442 443
443 } // namespace switches 444 } // namespace switches
444 445
445 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 446 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698