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