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 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 extern const char kSyncInvalidateXmppLogin[]; | 328 extern const char kSyncInvalidateXmppLogin[]; |
329 extern const char kSyncKeystoreEncryption[]; | 329 extern const char kSyncKeystoreEncryption[]; |
330 extern const char kSyncShortInitialRetryOverride[]; | 330 extern const char kSyncShortInitialRetryOverride[]; |
331 extern const char kSyncNotificationMethod[]; | 331 extern const char kSyncNotificationMethod[]; |
332 extern const char kSyncNotificationHostPort[]; | 332 extern const char kSyncNotificationHostPort[]; |
333 extern const char kSyncServiceURL[]; | 333 extern const char kSyncServiceURL[]; |
334 extern const char kSyncTabFavicons[]; | 334 extern const char kSyncTabFavicons[]; |
335 extern const char kSyncThrowUnrecoverableError[]; | 335 extern const char kSyncThrowUnrecoverableError[]; |
336 extern const char kSyncTrySsltcpFirstForXmpp[]; | 336 extern const char kSyncTrySsltcpFirstForXmpp[]; |
337 extern const char kTabBrowserDragging[]; | 337 extern const char kTabBrowserDragging[]; |
| 338 extern const char kTabCapture[]; |
338 extern const char kTestNaClSandbox[]; | 339 extern const char kTestNaClSandbox[]; |
339 extern const char kTestName[]; | 340 extern const char kTestName[]; |
340 extern const char kTestType[]; | 341 extern const char kTestType[]; |
341 extern const char kTestingChannelID[]; | 342 extern const char kTestingChannelID[]; |
342 extern const char kTrustedSpdyProxy[]; | 343 extern const char kTrustedSpdyProxy[]; |
343 extern const char kTryChromeAgain[]; | 344 extern const char kTryChromeAgain[]; |
344 extern const char kUninstall[]; | 345 extern const char kUninstall[]; |
345 extern const char kUseSpdy[]; | 346 extern const char kUseSpdy[]; |
346 extern const char kUseGpuInTests[]; | 347 extern const char kUseGpuInTests[]; |
347 extern const char kUseSpellingService[]; | 348 extern const char kUseSpellingService[]; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 | 452 |
452 namespace chrome { | 453 namespace chrome { |
453 | 454 |
454 // Returns true if the new frameless constrained window style is enabled. | 455 // Returns true if the new frameless constrained window style is enabled. |
455 // TODO(sail): Remove this once the feature is fully baked. | 456 // TODO(sail): Remove this once the feature is fully baked. |
456 bool IsFramelessConstrainedDialogEnabled(); | 457 bool IsFramelessConstrainedDialogEnabled(); |
457 | 458 |
458 } // namespace chrome | 459 } // namespace chrome |
459 | 460 |
460 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 461 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |