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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
407 // Disable speculative TCP/IP preconnection. | 407 // Disable speculative TCP/IP preconnection. |
408 const char kDisablePreconnect[] = "disable-preconnect"; | 408 const char kDisablePreconnect[] = "disable-preconnect"; |
409 | 409 |
410 // Disable prerendering based on local browsing history. | 410 // Disable prerendering based on local browsing history. |
411 const char kDisablePrerenderLocalPredictor[] = | 411 const char kDisablePrerenderLocalPredictor[] = |
412 "disable-prerender-local-predictor"; | 412 "disable-prerender-local-predictor"; |
413 | 413 |
414 // Disable Privet local printing. | 414 // Disable Privet local printing. |
415 const char kDisablePrivetLocalPrinting[] = "disable-privet-local-printing"; | 415 const char kDisablePrivetLocalPrinting[] = "disable-privet-local-printing"; |
416 | 416 |
417 // Enable Privet storage. | |
418 const char kEnablePrivetStorage[] = "enable-privet-storage"; | |
Vitaly Buka (NO REVIEWS)
2014/01/07 21:13:22
same
Noam Samuel
2014/01/07 21:48:55
Done.
| |
419 | |
417 // Normally when the user attempts to navigate to a page that was the result of | 420 // Normally when the user attempts to navigate to a page that was the result of |
418 // a post we prompt to make sure they want to. This switch may be used to | 421 // a post we prompt to make sure they want to. This switch may be used to |
419 // disable that check. This switch is used during automated testing. | 422 // disable that check. This switch is used during automated testing. |
420 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost"; | 423 const char kDisablePromptOnRepost[] = "disable-prompt-on-repost"; |
421 | 424 |
422 // Disables support for the QUIC protocol. | 425 // Disables support for the QUIC protocol. |
423 const char kDisableQuic[] = "disable-quic"; | 426 const char kDisableQuic[] = "disable-quic"; |
424 | 427 |
425 // Disables support for the HTTPS over QUIC protocol. This is a temporary | 428 // Disables support for the HTTPS over QUIC protocol. This is a temporary |
426 // testing flag. This only has an effect if QUIC protocol is enabled. | 429 // testing flag. This only has an effect if QUIC protocol is enabled. |
(...skipping 1253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1680 | 1683 |
1681 // ----------------------------------------------------------------------------- | 1684 // ----------------------------------------------------------------------------- |
1682 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1685 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1683 // | 1686 // |
1684 // You were going to just dump your switches here, weren't you? Instead, please | 1687 // You were going to just dump your switches here, weren't you? Instead, please |
1685 // put them in alphabetical order above, or in order inside the appropriate | 1688 // put them in alphabetical order above, or in order inside the appropriate |
1686 // ifdef at the bottom. The order should match the header. | 1689 // ifdef at the bottom. The order should match the header. |
1687 // ----------------------------------------------------------------------------- | 1690 // ----------------------------------------------------------------------------- |
1688 | 1691 |
1689 } // namespace switches | 1692 } // namespace switches |
OLD | NEW |