Chromium Code Reviews| 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 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 506 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; | 506 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; |
| 507 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; | 507 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; |
| 508 | 508 |
| 509 // Enables support for the QUIC protocol. This is a temporary testing flag. | 509 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 510 const char kEnableQuic[] = "enable-quic"; | 510 const char kEnableQuic[] = "enable-quic"; |
| 511 | 511 |
| 512 // Enable use of Chromium's port selection for the ephemeral port via bind(). | 512 // Enable use of Chromium's port selection for the ephemeral port via bind(). |
| 513 // This only has an effect if QUIC protocol is enabled. | 513 // This only has an effect if QUIC protocol is enabled. |
| 514 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; | 514 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; |
| 515 | 515 |
| 516 // Enables support for HTTP alternative services. | |
| 517 const char kEnableAltSvc[] = "enable-alternative-services"; | |
|
Ryan Hamilton
2015/09/08 17:50:06
Since the flag is --enable-alternative-services, I
Bence
2015/09/14 21:56:16
Done.
| |
| 518 | |
| 516 // Enables save password prompt bubble. | 519 // Enables save password prompt bubble. |
| 517 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; | 520 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; |
| 518 | 521 |
| 519 // Enables SDCH persistence. | 522 // Enables SDCH persistence. |
| 520 const char kEnableSdchPersistence[] = "enable-sdch-persistence"; | 523 const char kEnableSdchPersistence[] = "enable-sdch-persistence"; |
| 521 | 524 |
| 522 // Enables using bubbles for session restore request instead of infobars. | 525 // Enables using bubbles for session restore request instead of infobars. |
| 523 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 526 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 524 | 527 |
| 525 // Enable or disable settings in a separate browser window per profile | 528 // Enable or disable settings in a separate browser window per profile |
| (...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1360 | 1363 |
| 1361 // ----------------------------------------------------------------------------- | 1364 // ----------------------------------------------------------------------------- |
| 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1363 // | 1366 // |
| 1364 // You were going to just dump your switches here, weren't you? Instead, please | 1367 // You were going to just dump your switches here, weren't you? Instead, please |
| 1365 // put them in alphabetical order above, or in order inside the appropriate | 1368 // put them in alphabetical order above, or in order inside the appropriate |
| 1366 // ifdef at the bottom. The order should match the header. | 1369 // ifdef at the bottom. The order should match the header. |
| 1367 // ----------------------------------------------------------------------------- | 1370 // ----------------------------------------------------------------------------- |
| 1368 | 1371 |
| 1369 } // namespace switches | 1372 } // namespace switches |
| OLD | NEW |