| 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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; | 488 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; |
| 489 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; | 489 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; |
| 490 | 490 |
| 491 // Enables support for the QUIC protocol. This is a temporary testing flag. | 491 // Enables support for the QUIC protocol. This is a temporary testing flag. |
| 492 const char kEnableQuic[] = "enable-quic"; | 492 const char kEnableQuic[] = "enable-quic"; |
| 493 | 493 |
| 494 // Enable use of Chromium's port selection for the ephemeral port via bind(). | 494 // Enable use of Chromium's port selection for the ephemeral port via bind(). |
| 495 // This only has an effect if QUIC protocol is enabled. | 495 // This only has an effect if QUIC protocol is enabled. |
| 496 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; | 496 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; |
| 497 | 497 |
| 498 // If the WebRTC logging private API is active, enables WebRTC event logging. |
| 499 const char kEnableWebRtcEventLoggingFromExtension[] = |
| 500 "enable-webrtc-event-logging-from-extension"; |
| 501 |
| 498 // Enables support for HTTP alternative services. | 502 // Enables support for HTTP alternative services. |
| 499 const char kEnableAlternativeServices[] = "enable-alternative-services"; | 503 const char kEnableAlternativeServices[] = "enable-alternative-services"; |
| 500 | 504 |
| 501 // Enables using bubbles for session restore request instead of infobars. | 505 // Enables using bubbles for session restore request instead of infobars. |
| 502 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 506 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 503 | 507 |
| 504 // Enable or disable settings in a separate browser window per profile | 508 // Enable or disable settings in a separate browser window per profile |
| 505 // (see SettingsWindowEnabled() below). | 509 // (see SettingsWindowEnabled() below). |
| 506 const char kEnableSettingsWindow[] = "enable-settings-window"; | 510 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 507 const char kDisableSettingsWindow[] = "disable-settings-window"; | 511 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| (...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 | 1379 |
| 1376 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
| 1377 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1378 // | 1382 // |
| 1379 // You were going to just dump your switches here, weren't you? Instead, please | 1383 // You were going to just dump your switches here, weren't you? Instead, please |
| 1380 // put them in alphabetical order above, or in order inside the appropriate | 1384 // put them in alphabetical order above, or in order inside the appropriate |
| 1381 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
| 1382 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
| 1383 | 1387 |
| 1384 } // namespace switches | 1388 } // namespace switches |
| OLD | NEW |