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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 const char kEnableUserAlternateProtocolPorts[] = | 628 const char kEnableUserAlternateProtocolPorts[] = |
629 "enable-user-controlled-alternate-protocol-ports"; | 629 "enable-user-controlled-alternate-protocol-ports"; |
630 | 630 |
631 // Enables a new "web app" style frame for hosted apps (including bookmark | 631 // Enables a new "web app" style frame for hosted apps (including bookmark |
632 // apps). | 632 // apps). |
633 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 633 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
634 | 634 |
635 // Enables the Website Settings page on the Settings page. | 635 // Enables the Website Settings page on the Settings page. |
636 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; | 636 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; |
637 | 637 |
| 638 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
| 639 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
| 640 |
638 // Explicitly allows additional ports using a comma-separated list of port | 641 // Explicitly allows additional ports using a comma-separated list of port |
639 // numbers. | 642 // numbers. |
640 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | 643 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; |
641 | 644 |
642 // Values for the kExtensionContentVerification flag. | 645 // Values for the kExtensionContentVerification flag. |
643 // See ContentVerifierDelegate::Mode for more explanation. | 646 // See ContentVerifierDelegate::Mode for more explanation. |
644 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 647 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
645 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 648 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
646 const char kExtensionContentVerificationEnforce[] = "enforce"; | 649 const char kExtensionContentVerificationEnforce[] = "enforce"; |
647 | 650 |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1405 | 1408 |
1406 // ----------------------------------------------------------------------------- | 1409 // ----------------------------------------------------------------------------- |
1407 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1410 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1408 // | 1411 // |
1409 // You were going to just dump your switches here, weren't you? Instead, please | 1412 // You were going to just dump your switches here, weren't you? Instead, please |
1410 // put them in alphabetical order above, or in order inside the appropriate | 1413 // put them in alphabetical order above, or in order inside the appropriate |
1411 // ifdef at the bottom. The order should match the header. | 1414 // ifdef at the bottom. The order should match the header. |
1412 // ----------------------------------------------------------------------------- | 1415 // ----------------------------------------------------------------------------- |
1413 | 1416 |
1414 } // namespace switches | 1417 } // namespace switches |
OLD | NEW |