| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 const char kEnableQuic[] = "enable-quic"; | 507 const char kEnableQuic[] = "enable-quic"; |
| 508 | 508 |
| 509 // Enable use of Chromium's port selection for the ephemeral port via bind(). | 509 // Enable use of Chromium's port selection for the ephemeral port via bind(). |
| 510 // This only has an effect if QUIC protocol is enabled. | 510 // This only has an effect if QUIC protocol is enabled. |
| 511 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; | 511 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; |
| 512 | 512 |
| 513 // If the WebRTC logging private API is active, enables WebRTC event logging. | 513 // If the WebRTC logging private API is active, enables WebRTC event logging. |
| 514 const char kEnableWebRtcEventLoggingFromExtension[] = | 514 const char kEnableWebRtcEventLoggingFromExtension[] = |
| 515 "enable-webrtc-event-logging-from-extension"; | 515 "enable-webrtc-event-logging-from-extension"; |
| 516 | 516 |
| 517 // Enables support for HTTP alternative services. | |
| 518 const char kEnableAlternativeServices[] = "enable-alternative-services"; | |
| 519 | |
| 520 // Enables using bubbles for session restore request instead of infobars. | 517 // Enables using bubbles for session restore request instead of infobars. |
| 521 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; | 518 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; |
| 522 | 519 |
| 523 // Enable or disable settings in a separate browser window per profile | 520 // Enable or disable settings in a separate browser window per profile |
| 524 // (see SettingsWindowEnabled() below). | 521 // (see SettingsWindowEnabled() below). |
| 525 const char kEnableSettingsWindow[] = "enable-settings-window"; | 522 const char kEnableSettingsWindow[] = "enable-settings-window"; |
| 526 const char kDisableSettingsWindow[] = "disable-settings-window"; | 523 const char kDisableSettingsWindow[] = "disable-settings-window"; |
| 527 | 524 |
| 528 // Enable the Site Engagement App Banner which triggers app install banners | 525 // Enable the Site Engagement App Banner which triggers app install banners |
| 529 // using the site engagement service rather than a navigation-based heuristic. | 526 // using the site engagement service rather than a navigation-based heuristic. |
| (...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 | 1366 |
| 1370 // ----------------------------------------------------------------------------- | 1367 // ----------------------------------------------------------------------------- |
| 1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1368 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1372 // | 1369 // |
| 1373 // You were going to just dump your switches here, weren't you? Instead, please | 1370 // You were going to just dump your switches here, weren't you? Instead, please |
| 1374 // put them in alphabetical order above, or in order inside the appropriate | 1371 // put them in alphabetical order above, or in order inside the appropriate |
| 1375 // ifdef at the bottom. The order should match the header. | 1372 // ifdef at the bottom. The order should match the header. |
| 1376 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
| 1377 | 1374 |
| 1378 } // namespace switches | 1375 } // namespace switches |
| OLD | NEW |