| 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 547 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 548 | 548 |
| 549 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 549 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 550 const char kEnableUserAlternateProtocolPorts[] = | 550 const char kEnableUserAlternateProtocolPorts[] = |
| 551 "enable-user-controlled-alternate-protocol-ports"; | 551 "enable-user-controlled-alternate-protocol-ports"; |
| 552 | 552 |
| 553 // Enables a new "web app" style frame for hosted apps (including bookmark | 553 // Enables a new "web app" style frame for hosted apps (including bookmark |
| 554 // apps). | 554 // apps). |
| 555 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 555 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
| 556 | 556 |
| 557 // Enables the Website Settings page on the Settings page. | |
| 558 const char kEnableWebsiteSettingsManager[] = "enable-website-settings-manager"; | |
| 559 | |
| 560 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. | 557 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
| 561 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; | 558 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
| 562 | 559 |
| 563 // Values for the kExtensionContentVerification flag. | 560 // Values for the kExtensionContentVerification flag. |
| 564 // See ContentVerifierDelegate::Mode for more explanation. | 561 // See ContentVerifierDelegate::Mode for more explanation. |
| 565 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 562 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
| 566 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 563 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
| 567 const char kExtensionContentVerificationEnforce[] = "enforce"; | 564 const char kExtensionContentVerificationEnforce[] = "enforce"; |
| 568 | 565 |
| 569 // Name of the command line flag to force content verification to be on in one | 566 // Name of the command line flag to force content verification to be on in one |
| (...skipping 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 | 1367 |
| 1371 // ----------------------------------------------------------------------------- | 1368 // ----------------------------------------------------------------------------- |
| 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1373 // | 1370 // |
| 1374 // You were going to just dump your switches here, weren't you? Instead, please | 1371 // You were going to just dump your switches here, weren't you? Instead, please |
| 1375 // put them in alphabetical order above, or in order inside the appropriate | 1372 // put them in alphabetical order above, or in order inside the appropriate |
| 1376 // ifdef at the bottom. The order should match the header. | 1373 // ifdef at the bottom. The order should match the header. |
| 1377 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
| 1378 | 1375 |
| 1379 } // namespace switches | 1376 } // namespace switches |
| OLD | NEW |