| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 | 309 |
| 310 // Disable pop-up blocking. | 310 // Disable pop-up blocking. |
| 311 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 311 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
| 312 | 312 |
| 313 // Disable speculative TCP/IP preconnection. | 313 // Disable speculative TCP/IP preconnection. |
| 314 const char kDisablePreconnect[] = "disable-preconnect"; | 314 const char kDisablePreconnect[] = "disable-preconnect"; |
| 315 | 315 |
| 316 // Disables print preview (For testing, and for users who don't like us. :[ ) | 316 // Disables print preview (For testing, and for users who don't like us. :[ ) |
| 317 const char kDisablePrintPreview[] = "disable-print-preview"; | 317 const char kDisablePrintPreview[] = "disable-print-preview"; |
| 318 | 318 |
| 319 // Default print destination selection rules. |
| 320 // See PrintPreviewDefaultPrinterSelection policy for details. |
| 321 const char kPrintPreviewDefaultDestinationSelectionRules[] = |
| 322 "default-printer-selection-rules"; |
| 323 |
| 319 // Normally when the user attempts to navigate to a page that was the result of | 324 // Normally when the user attempts to navigate to a page that was the result of |
| 320 // a post we prompt to make sure they want to. This switch may be used to | 325 // a post we prompt to make sure they want to. This switch may be used to |
| 321 // disable that check. This switch is used during automated testing. | 326 // disable that check. This switch is used during automated testing. |
| 322 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost"; | 327 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost"; |
| 323 | 328 |
| 324 // Disables support for the QUIC protocol. | 329 // Disables support for the QUIC protocol. |
| 325 const char kDisableQuic[] = "disable-quic"; | 330 const char kDisableQuic[] = "disable-quic"; |
| 326 | 331 |
| 327 // Disable use of Chromium's port selection for the ephemeral port via bind(). | 332 // Disable use of Chromium's port selection for the ephemeral port via bind(). |
| 328 // This only has an effect if QUIC protocol is enabled. | 333 // This only has an effect if QUIC protocol is enabled. |
| (...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1391 | 1396 |
| 1392 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- |
| 1393 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1394 // | 1399 // |
| 1395 // You were going to just dump your switches here, weren't you? Instead, please | 1400 // You were going to just dump your switches here, weren't you? Instead, please |
| 1396 // put them in alphabetical order above, or in order inside the appropriate | 1401 // put them in alphabetical order above, or in order inside the appropriate |
| 1397 // ifdef at the bottom. The order should match the header. | 1402 // ifdef at the bottom. The order should match the header. |
| 1398 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
| 1399 | 1404 |
| 1400 } // namespace switches | 1405 } // namespace switches |
| OLD | NEW |