Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1378613004: Set Token-Binding HTTP header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tb-tls-ext-new
Patch Set: Add UMA logging of Token Binding support and NetLog event for Token Binding key lookup Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 const char kEnableSupervisedUserManagedBookmarksFolder[] = 539 const char kEnableSupervisedUserManagedBookmarksFolder[] =
540 "enable-supervised-user-managed-bookmarks-folder"; 540 "enable-supervised-user-managed-bookmarks-folder";
541 541
542 // Enables user control over muting tab audio from the tab strip. 542 // Enables user control over muting tab audio from the tab strip.
543 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting"; 543 const char kEnableTabAudioMuting[] = "enable-tab-audio-muting";
544 544
545 // Enables fanciful thumbnail processing. Used with NTP for 545 // Enables fanciful thumbnail processing. Used with NTP for
546 // instant-extended-api, where thumbnails are generally smaller. 546 // instant-extended-api, where thumbnails are generally smaller.
547 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; 547 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting";
548 548
549 // Enables negotiating token binding (draft-ietf-tokbind-protocol-02) in the tls
550 // handshake.
davidben 2015/11/18 20:49:00 I would probably say // Enables token binding (dr
nharper 2015/12/04 01:42:19 Done.
551 const char kEnableTokenBinding[] = "enable-token-binding";
552
549 // Enables Alternate-Protocol when the port is user controlled (> 1024). 553 // Enables Alternate-Protocol when the port is user controlled (> 1024).
550 const char kEnableUserAlternateProtocolPorts[] = 554 const char kEnableUserAlternateProtocolPorts[] =
551 "enable-user-controlled-alternate-protocol-ports"; 555 "enable-user-controlled-alternate-protocol-ports";
552 556
553 // 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
554 // apps). 558 // apps).
555 const char kEnableWebAppFrame[] = "enable-web-app-frame"; 559 const char kEnableWebAppFrame[] = "enable-web-app-frame";
556 560
557 // Enables Web Notification custom layouts. 561 // Enables Web Notification custom layouts.
558 const char kEnableWebNotificationCustomLayouts[] = 562 const char kEnableWebNotificationCustomLayouts[] =
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 1385
1382 // ----------------------------------------------------------------------------- 1386 // -----------------------------------------------------------------------------
1383 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1387 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1384 // 1388 //
1385 // You were going to just dump your switches here, weren't you? Instead, please 1389 // You were going to just dump your switches here, weren't you? Instead, please
1386 // put them in alphabetical order above, or in order inside the appropriate 1390 // put them in alphabetical order above, or in order inside the appropriate
1387 // ifdef at the bottom. The order should match the header. 1391 // ifdef at the bottom. The order should match the header.
1388 // ----------------------------------------------------------------------------- 1392 // -----------------------------------------------------------------------------
1389 1393
1390 } // namespace switches 1394 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698