OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 extern const char kServiceProcess[]; | 272 extern const char kServiceProcess[]; |
273 extern const char kServiceAccountLsid[]; | 273 extern const char kServiceAccountLsid[]; |
274 extern const char kShowCompositedLayerBorders[]; | 274 extern const char kShowCompositedLayerBorders[]; |
275 extern const char kShowIcons[]; | 275 extern const char kShowIcons[]; |
276 extern const char kShowPaintRects[]; | 276 extern const char kShowPaintRects[]; |
277 extern const char kSilentDumpOnDCHECK[]; | 277 extern const char kSilentDumpOnDCHECK[]; |
278 extern const char kSimpleDataSource[]; | 278 extern const char kSimpleDataSource[]; |
279 extern const char kSingleProcess[]; | 279 extern const char kSingleProcess[]; |
280 extern const char kStartMaximized[]; | 280 extern const char kStartMaximized[]; |
281 extern const char kSyncAllowPlain[]; | 281 extern const char kSyncAllowPlain[]; |
| 282 extern const char kSyncDisableChromeAsyncSocket[]; |
282 extern const char kSyncDisableTls[]; | 283 extern const char kSyncDisableTls[]; |
283 extern const char kSyncEmail[]; | 284 extern const char kSyncEmail[]; |
284 extern const char kSyncerThreadTimedStop[]; | 285 extern const char kSyncerThreadTimedStop[]; |
285 extern const char kSyncNotificationMethod[]; | 286 extern const char kSyncNotificationMethod[]; |
286 extern const char kSyncNotificationHost[]; | 287 extern const char kSyncNotificationHost[]; |
287 extern const char kSyncPassword[]; | 288 extern const char kSyncPassword[]; |
288 extern const char kSyncPort[]; | 289 extern const char kSyncPort[]; |
289 extern const char kSyncServer[]; | 290 extern const char kSyncServer[]; |
290 extern const char kSyncServiceURL[]; | 291 extern const char kSyncServiceURL[]; |
291 extern const char kSyncUseSslTcp[]; | 292 extern const char kSyncUseSslTcp[]; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 #endif | 380 #endif |
380 // Return true if the switches indicate the seccomp sandbox is enabled. | 381 // Return true if the switches indicate the seccomp sandbox is enabled. |
381 bool SeccompSandboxEnabled(); | 382 bool SeccompSandboxEnabled(); |
382 | 383 |
383 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 384 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
384 // alphabetical order, or in one of the ifdefs (also in order in each section). | 385 // alphabetical order, or in one of the ifdefs (also in order in each section). |
385 | 386 |
386 } // namespace switches | 387 } // namespace switches |
387 | 388 |
388 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 389 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |