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 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
551 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 551 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
552 | 552 |
553 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 553 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
554 const char kEnableUserAlternateProtocolPorts[] = | 554 const char kEnableUserAlternateProtocolPorts[] = |
555 "enable-user-controlled-alternate-protocol-ports"; | 555 "enable-user-controlled-alternate-protocol-ports"; |
556 | 556 |
557 // Enables a new "web app" style frame for hosted apps (including bookmark | 557 // Enables a new "web app" style frame for hosted apps (including bookmark |
558 // apps). | 558 // apps). |
559 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 559 extern const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
560 | 560 |
561 extern const char kEnableWebUsbNotification[] = "enable-webusb-notification"; | |
Reilly Grant (use Gerrit)
2015/08/20 17:02:45
Please rename the flag to "enable-webusb-notificat
juncai
2015/08/21 05:16:04
Done.
| |
562 | |
561 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. | 563 // Enables synchronizing WiFi credentials across devices, using Chrome Sync. |
562 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; | 564 const char kEnableWifiCredentialSync[] = "enable-wifi-credential-sync"; |
563 | 565 |
564 // Values for the kExtensionContentVerification flag. | 566 // Values for the kExtensionContentVerification flag. |
565 // See ContentVerifierDelegate::Mode for more explanation. | 567 // See ContentVerifierDelegate::Mode for more explanation. |
566 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; | 568 const char kExtensionContentVerificationBootstrap[] = "bootstrap"; |
567 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; | 569 const char kExtensionContentVerificationEnforceStrict[] = "enforce_strict"; |
568 const char kExtensionContentVerificationEnforce[] = "enforce"; | 570 const char kExtensionContentVerificationEnforce[] = "enforce"; |
569 | 571 |
570 // Name of the command line flag to force content verification to be on in one | 572 // Name of the command line flag to force content verification to be on in one |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1419 | 1421 |
1420 // ----------------------------------------------------------------------------- | 1422 // ----------------------------------------------------------------------------- |
1421 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1423 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1422 // | 1424 // |
1423 // You were going to just dump your switches here, weren't you? Instead, please | 1425 // You were going to just dump your switches here, weren't you? Instead, please |
1424 // put them in alphabetical order above, or in order inside the appropriate | 1426 // put them in alphabetical order above, or in order inside the appropriate |
1425 // ifdef at the bottom. The order should match the header. | 1427 // ifdef at the bottom. The order should match the header. |
1426 // ----------------------------------------------------------------------------- | 1428 // ----------------------------------------------------------------------------- |
1427 | 1429 |
1428 } // namespace switches | 1430 } // namespace switches |
OLD | NEW |