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

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

Issue 2749633006: CrOS: Add a flag to allow easy selection of tablet mode. (Closed)
Patch Set: Created 3 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 the shared command-line switches used by code in the Chrome 5 // Defines the shared command-line switches used by code in the Chrome
6 // directory that don't have anywhere more specific to go. 6 // directory that don't have anywhere more specific to go.
7 7
8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 8 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
9 #define CHROME_COMMON_CHROME_SWITCHES_H_ 9 #define CHROME_COMMON_CHROME_SWITCHES_H_
10 10
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 extern const char kExtensionContentVerificationEnforceStrict[]; 146 extern const char kExtensionContentVerificationEnforceStrict[];
147 extern const char kExtensionsInstallVerification[]; 147 extern const char kExtensionsInstallVerification[];
148 extern const char kExtensionsNotWebstore[]; 148 extern const char kExtensionsNotWebstore[];
149 extern const char kExtensionsUpdateFrequency[]; 149 extern const char kExtensionsUpdateFrequency[];
150 extern const char kFastStart[]; 150 extern const char kFastStart[];
151 extern const char kForceAndroidAppMode[]; 151 extern const char kForceAndroidAppMode[];
152 extern const char kForceAppMode[]; 152 extern const char kForceAppMode[];
153 extern const char kForceDesktopIOSPromotion[]; 153 extern const char kForceDesktopIOSPromotion[];
154 extern const char kForceFirstRun[]; 154 extern const char kForceFirstRun[];
155 extern const char kForceLocalNtp[]; 155 extern const char kForceLocalNtp[];
156 extern const char kForceTabletMode[];
157 extern const char kForceTabletModeAuto[];
158 extern const char kForceTabletModeClamshell[];
159 extern const char kForceTabletModeTouchView[];
156 extern const char kForceVariationIds[]; 160 extern const char kForceVariationIds[];
157 extern const char kHistoryEnableGroupByDomain[]; 161 extern const char kHistoryEnableGroupByDomain[];
158 extern const char kHomePage[]; 162 extern const char kHomePage[];
159 extern const char kHostResolverRetryAttempts[]; 163 extern const char kHostResolverRetryAttempts[];
160 extern const char kHostRules[]; 164 extern const char kHostRules[];
161 extern const char kIgnoreUrlFetcherCertRequests[]; 165 extern const char kIgnoreUrlFetcherCertRequests[];
162 extern const char kIncognito[]; 166 extern const char kIncognito[];
163 extern const char kInstallChromeApp[]; 167 extern const char kInstallChromeApp[];
164 extern const char kInstallSupervisedUserWhitelists[]; 168 extern const char kInstallSupervisedUserWhitelists[];
165 extern const char kInstantProcess[]; 169 extern const char kInstantProcess[];
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 #if defined(OS_WIN) 371 #if defined(OS_WIN)
368 bool GDITextPrintingEnabled(); 372 bool GDITextPrintingEnabled();
369 #endif 373 #endif
370 374
371 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 375 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
372 // alphabetical order, or in one of the ifdefs (also in order in each section). 376 // alphabetical order, or in one of the ifdefs (also in order in each section).
373 377
374 } // namespace switches 378 } // namespace switches
375 379
376 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 380 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698