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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 const char kEnableSupervisedUserManagedBookmarksFolder[] = | 538 const char kEnableSupervisedUserManagedBookmarksFolder[] = |
539 "enable-supervised-user-managed-bookmarks-folder"; | 539 "enable-supervised-user-managed-bookmarks-folder"; |
540 | 540 |
541 // Enables user control over muting tab audio from the tab strip. | 541 // Enables user control over muting tab audio from the tab strip. |
542 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; | 542 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; |
543 | 543 |
544 // Enables fanciful thumbnail processing. Used with NTP for | 544 // Enables fanciful thumbnail processing. Used with NTP for |
545 // instant-extended-api, where thumbnails are generally smaller. | 545 // instant-extended-api, where thumbnails are generally smaller. |
546 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 546 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
547 | 547 |
548 // Enables token binding (draft-ietf-tokbind-protocol-02). | |
549 const char kEnableTokenBinding[] = "enable-token-binding"; | |
550 | |
551 // Enables Alternate-Protocol when the port is user controlled (> 1024). | 548 // Enables Alternate-Protocol when the port is user controlled (> 1024). |
552 const char kEnableUserAlternateProtocolPorts[] = | 549 const char kEnableUserAlternateProtocolPorts[] = |
553 "enable-user-controlled-alternate-protocol-ports"; | 550 "enable-user-controlled-alternate-protocol-ports"; |
554 | 551 |
555 // Enables a new "web app" style frame for hosted apps (including bookmark | 552 // Enables a new "web app" style frame for hosted apps (including bookmark |
556 // apps). | 553 // apps). |
557 const char kEnableWebAppFrame[] = "enable-web-app-frame"; | 554 const char kEnableWebAppFrame[] = "enable-web-app-frame"; |
558 | 555 |
559 // Enables Web Notification custom layouts. | 556 // Enables Web Notification custom layouts. |
560 const char kEnableWebNotificationCustomLayouts[] = | 557 const char kEnableWebNotificationCustomLayouts[] = |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 | 1393 |
1397 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1395 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1399 // | 1396 // |
1400 // You were going to just dump your switches here, weren't you? Instead, please | 1397 // You were going to just dump your switches here, weren't you? Instead, please |
1401 // put them in alphabetical order above, or in order inside the appropriate | 1398 // put them in alphabetical order above, or in order inside the appropriate |
1402 // ifdef at the bottom. The order should match the header. | 1399 // ifdef at the bottom. The order should match the header. |
1403 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
1404 | 1401 |
1405 } // namespace switches | 1402 } // namespace switches |
OLD | NEW |