Chromium Code Reviews| 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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 541 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 541 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
| 542 "enable-supervised-user-managed-bookmarks-folder"; | 542 "enable-supervised-user-managed-bookmarks-folder"; |
| 543 | 543 |
| 544 // Enables user control over muting tab audio from the tab strip. | 544 // Enables user control over muting tab audio from the tab strip. |
| 545 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 545 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
| 546 | 546 |
| 547 // Enables fanciful thumbnail processing. Used with NTP for | 547 // Enables fanciful thumbnail processing. Used with NTP for |
| 548 // instant-extended-api, where thumbnails are generally smaller. | 548 // instant-extended-api, where thumbnails are generally smaller. |
| 549 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 549 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
| 550 | 550 |
| 551 // Enables negotiating token binding (draft-ietf-tokbind-protocol-02) in the tls | |
|
davidben
2015/10/15 21:52:08
Nit: tls -> TLS
nharper
2015/10/20 22:52:18
Done.
| |
| 552 // handshake. | |
| 553 const char kEnableTokenBinding[] = "enable-token-binding"; | |
| 554 | |
| 551 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 555 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
| 552 const char kEnableUserAlternateProtocolPorts[] = | 556 const char kEnableUserAlternateProtocolPorts[] = |
| 553 "enable-user-controlled-alternate-protocol-ports"; | 557 "enable-user-controlled-alternate-protocol-ports"; |
| 554 | 558 |
| 555 // Enables a new "web app" style frame for hosted apps (including bookmark | 559 // Enables a new "web app" style frame for hosted apps (including bookmark |
| 556 // apps). | 560 // apps). |
| 557 const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 561 const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
| 558 | 562 |
| 559 // Enables webusb notifications, which shows notifications when usb devices with | 563 // Enables webusb notifications, which shows notifications when usb devices with |
| 560 // landing page are plugged in. | 564 // landing page are plugged in. |
| (...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1388 | 1392 |
| 1389 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
| 1390 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1391 // | 1395 // |
| 1392 // You were going to just dump your switches here, weren't you? Instead, please | 1396 // You were going to just dump your switches here, weren't you? Instead, please |
| 1393 // put them in alphabetical order above, or in order inside the appropriate | 1397 // put them in alphabetical order above, or in order inside the appropriate |
| 1394 // ifdef at the bottom. The order should match the header. | 1398 // ifdef at the bottom. The order should match the header. |
| 1395 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
| 1396 | 1400 |
| 1397 } // namespace switches | 1401 } // namespace switches |
| OLD | NEW |