| 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 // Enables a new "web app" style frame for hosted apps (including bookmark | 591 // Enables a new "web app" style frame for hosted apps (including bookmark |
| 592 // apps). | 592 // apps). |
| 593 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 593 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
| 594 | 594 |
| 595 // Enables the Website Settings page on the Settings page. | 595 // Enables the Website Settings page on the Settings page. |
| 596 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; | 596 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; |
| 597 | 597 |
| 598 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. | 598 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
| 599 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; | 599 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
| 600 | 600 |
| 601 // Explicitly allows additional ports using a comma-separated list of port | |
| 602 // numbers. | |
| 603 const char kExplicitlyAllowedPorts[] = "explicitly-allowed-ports"; | |
| 604 | |
| 605 // Values for the kExtensionContentVerification flag. | 601 // Values for the kExtensionContentVerification flag. |
| 606 // See ContentVerifierDelegate::Mode for more explanation. | 602 // See ContentVerifierDelegate::Mode for more explanation. |
| 607 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 603 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
| 608 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 604 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
| 609 const char kExtensionContentVerificationEnforce[] = "enforce"; | 605 const char kExtensionContentVerificationEnforce[] = "enforce"; |
| 610 | 606 |
| 611 // Name of the command line flag to force content verification to be on in one | 607 // Name of the command line flag to force content verification to be on in one |
| 612 // of various modes. | 608 // of various modes. |
| 613 const char kExtensionContentVerification[] = "extension-content-verification"; | 609 const char kExtensionContentVerification[] = "extension-content-verification"; |
| 614 | 610 |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 | 1396 |
| 1401 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- |
| 1402 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1403 // | 1399 // |
| 1404 // 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 |
| 1405 // 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 |
| 1406 // ifdef at the bottom. The order should match the header. | 1402 // ifdef at the bottom. The order should match the header. |
| 1407 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
| 1408 | 1404 |
| 1409 } // namespace switches | 1405 } // namespace switches |
| OLD | NEW |