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

Side by Side Diff: content/public/common/content_features.cc

Issue 2011443002: ECDSA default certificate in WebRTC: Remove experiment flag kWebRtcEcdsaDefault. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "content/public/common/content_features.h" 6 #include "content/public/common/content_features.h"
7 7
8 namespace features { 8 namespace features {
9 9
10 // All features in alphabetical order. 10 // All features in alphabetical order.
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 // Enables token binding 101 // Enables token binding
102 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt). 102 // (https://www.ietf.org/id/draft-ietf-tokbind-protocol-04.txt).
103 const base::Feature kTokenBinding{"token-binding", 103 const base::Feature kTokenBinding{"token-binding",
104 base::FEATURE_DISABLED_BY_DEFAULT}; 104 base::FEATURE_DISABLED_BY_DEFAULT};
105 105
106 // An experimental User Agent Intervention on WebFonts loading. 106 // An experimental User Agent Intervention on WebFonts loading.
107 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2", 107 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2",
108 base::FEATURE_DISABLED_BY_DEFAULT}; 108 base::FEATURE_DISABLED_BY_DEFAULT};
109 109
110 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was
111 // specified in JS).
112 const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa",
113 base::FEATURE_ENABLED_BY_DEFAULT};
114
115 // Controls whether the WebUSB API is enabled: 110 // Controls whether the WebUSB API is enabled:
116 // https://wicg.github.io/webusb 111 // https://wicg.github.io/webusb
117 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT}; 112 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT};
118 113
119 #if defined(OS_ANDROID) 114 #if defined(OS_ANDROID)
120 // Use IME's own thread instead of using main UI thread. It also means that 115 // Use IME's own thread instead of using main UI thread. It also means that
121 // we will not use replica editor and do a round trip to renderer to synchronize 116 // we will not use replica editor and do a round trip to renderer to synchronize
122 // with Blink data. 117 // with Blink data.
123 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; 118 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
124 119
125 // FeatureList definition for the Seccomp field trial. 120 // FeatureList definition for the Seccomp field trial.
126 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 121 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
127 base::FEATURE_DISABLED_BY_DEFAULT}; 122 base::FEATURE_DISABLED_BY_DEFAULT};
128 #endif 123 #endif
129 124
130 } // namespace features 125 } // namespace features
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698