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 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
630 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 630 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
631 const char kEnableUserAlternateProtocolPorts[] = | 631 const char kEnableUserAlternateProtocolPorts[] = |
632 "enable-user-controlled-alternate-protocol-ports"; | 632 "enable-user-controlled-alternate-protocol-ports"; |
633 | 633 |
634 // Uses WebSocket over SPDY. | 634 // Uses WebSocket over SPDY. |
635 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; | 635 const char kEnableWebSocketOverSpdy[] = "enable-websocket-over-spdy"; |
636 | 636 |
637 // Enables the Website Settings page on the Settings page. | 637 // Enables the Website Settings page on the Settings page. |
638 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; | 638 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; |
639 | 639 |
| 640 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
| 641 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
| 642 |
640 // Explicitly allows additional ports using a comma-separated list of port | 643 // Explicitly allows additional ports using a comma-separated list of port |
641 // numbers. | 644 // numbers. |
642 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 645 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
643 | 646 |
644 // Values for the kExtensionContentVerification flag. | 647 // Values for the kExtensionContentVerification flag. |
645 // See ContentVerifierDelegate::Mode for more explanation. | 648 // See ContentVerifierDelegate::Mode for more explanation. |
646 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 649 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
647 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 650 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
648 const char kExtensionContentVerificationEnforce[] = "enforce"; | 651 const char kExtensionContentVerificationEnforce[] = "enforce"; |
649 | 652 |
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1376 | 1379 |
1377 // ----------------------------------------------------------------------------- | 1380 // ----------------------------------------------------------------------------- |
1378 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1381 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1379 // | 1382 // |
1380 // 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 |
1381 // 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 |
1382 // ifdef at the bottom. The order should match the header. | 1385 // ifdef at the bottom. The order should match the header. |
1383 // ----------------------------------------------------------------------------- | 1386 // ----------------------------------------------------------------------------- |
1384 | 1387 |
1385 } // namespace switches | 1388 } // namespace switches |
OLD | NEW |