OLD | NEW |
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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 extern const char kSupervisedUserSyncToken[]; | 237 extern const char kSupervisedUserSyncToken[]; |
238 extern const char kSystemLogUploadFrequency[]; | 238 extern const char kSystemLogUploadFrequency[]; |
239 extern const char kTestName[]; | 239 extern const char kTestName[]; |
240 extern const char kTryChromeAgain[]; | 240 extern const char kTryChromeAgain[]; |
241 extern const char kUnlimitedStorage[]; | 241 extern const char kUnlimitedStorage[]; |
242 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; | 242 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; |
243 extern const char kUnsafePacUrl[]; | 243 extern const char kUnsafePacUrl[]; |
244 extern const char kUserAgent[]; | 244 extern const char kUserAgent[]; |
245 extern const char kUserDataDir[]; | 245 extern const char kUserDataDir[]; |
246 extern const char kUseSimpleCacheBackend[]; | 246 extern const char kUseSimpleCacheBackend[]; |
247 extern const char kV8PacMojoInProcess[]; | |
248 extern const char kV8PacMojoOutOfProcess[]; | 247 extern const char kV8PacMojoOutOfProcess[]; |
249 extern const char kValidateCrx[]; | 248 extern const char kValidateCrx[]; |
250 extern const char kVersion[]; | 249 extern const char kVersion[]; |
251 extern const char kWindowPosition[]; | 250 extern const char kWindowPosition[]; |
252 extern const char kWindowSize[]; | 251 extern const char kWindowSize[]; |
253 extern const char kWindowWorkspace[]; | 252 extern const char kWindowWorkspace[]; |
254 extern const char kWinHttpProxyResolver[]; | 253 extern const char kWinHttpProxyResolver[]; |
255 extern const char kWinJumplistAction[]; | 254 extern const char kWinJumplistAction[]; |
256 | 255 |
257 #if defined(GOOGLE_CHROME_BUILD) | 256 #if defined(GOOGLE_CHROME_BUILD) |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 #if defined(OS_WIN) | 377 #if defined(OS_WIN) |
379 bool GDITextPrintingEnabled(); | 378 bool GDITextPrintingEnabled(); |
380 #endif | 379 #endif |
381 | 380 |
382 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 381 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
383 // alphabetical order, or in one of the ifdefs (also in order in each section). | 382 // alphabetical order, or in one of the ifdefs (also in order in each section). |
384 | 383 |
385 } // namespace switches | 384 } // namespace switches |
386 | 385 |
387 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 386 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |