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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 // Enables fanciful thumbnail processing. Used with NTP for | 546 // Enables fanciful thumbnail processing. Used with NTP for |
547 // instant-extended-api, where thumbnails are generally smaller. | 547 // instant-extended-api, where thumbnails are generally smaller. |
548 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 548 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
549 | 549 |
550 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 550 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
551 const char kEnableUserAlternateProtocolPorts[] = | 551 const char kEnableUserAlternateProtocolPorts[] = |
552 "enable-user-controlled-alternate-protocol-ports"; | 552 "enable-user-controlled-alternate-protocol-ports"; |
553 | 553 |
554 // Enables a new "web app" style frame for hosted apps (including bookmark | 554 // Enables a new "web app" style frame for hosted apps (including bookmark |
555 // apps). | 555 // apps). |
556 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 556 const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
557 | 557 |
558 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. | 558 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
559 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; | 559 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
560 | 560 |
561 // Values for the kExtensionContentVerification flag. | 561 // Values for the kExtensionContentVerification flag. |
562 // See ContentVerifierDelegate::Mode for more explanation. | 562 // See ContentVerifierDelegate::Mode for more explanation. |
563 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 563 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
564 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 564 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
565 const char kExtensionContentVerificationEnforce[] = "enforce"; | 565 const char kExtensionContentVerificationEnforce[] = "enforce"; |
566 | 566 |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1397 | 1397 |
1398 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1400 // | 1400 // |
1401 // You were going to just dump your switches here, weren't you? Instead, please | 1401 // You were going to just dump your switches here, weren't you? Instead, please |
1402 // put them in alphabetical order above, or in order inside the appropriate | 1402 // put them in alphabetical order above, or in order inside the appropriate |
1403 // ifdef at the bottom. The order should match the header. | 1403 // ifdef at the bottom. The order should match the header. |
1404 // ----------------------------------------------------------------------------- | 1404 // ----------------------------------------------------------------------------- |
1405 | 1405 |
1406 } // namespace switches | 1406 } // namespace switches |
OLD | NEW |