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

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

Issue 1979553002: WebRTC: Launch ECDSA as default certificate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: static_assert again, rebase with master Created 4 years, 7 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
« no previous file with comments | « no previous file | content/renderer/media/rtc_peer_connection_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 const base::Feature kTokenBinding{"token-binding", 77 const base::Feature kTokenBinding{"token-binding",
78 base::FEATURE_DISABLED_BY_DEFAULT}; 78 base::FEATURE_DISABLED_BY_DEFAULT};
79 79
80 // An experimental User Agent Intervention on WebFonts loading. 80 // An experimental User Agent Intervention on WebFonts loading.
81 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2", 81 const base::Feature kWebFontsInterventionV2{"WebFontsInterventionV2",
82 base::FEATURE_DISABLED_BY_DEFAULT}; 82 base::FEATURE_DISABLED_BY_DEFAULT};
83 83
84 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was 84 // Makes WebRTC use ECDSA certs by default (i.e., when no cert type was
85 // specified in JS). 85 // specified in JS).
86 const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa", 86 const base::Feature kWebRtcEcdsaDefault {"WebRTC-EnableWebRtcEcdsa",
87 base::FEATURE_DISABLED_BY_DEFAULT}; 87 base::FEATURE_ENABLED_BY_DEFAULT};
88 88
89 // Controls whether the WebUSB API is enabled: 89 // Controls whether the WebUSB API is enabled:
90 // https://wicg.github.io/webusb 90 // https://wicg.github.io/webusb
91 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT}; 91 const base::Feature kWebUsb{"WebUSB", base::FEATURE_ENABLED_BY_DEFAULT};
92 92
93 #if defined(OS_ANDROID) 93 #if defined(OS_ANDROID)
94 // Use IME's own thread instead of using main UI thread. It also means that 94 // Use IME's own thread instead of using main UI thread. It also means that
95 // we will not use replica editor and do a round trip to renderer to synchronize 95 // we will not use replica editor and do a round trip to renderer to synchronize
96 // with Blink data. 96 // with Blink data.
97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; 97 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
98 98
99 // FeatureList definition for the Seccomp field trial. 99 // FeatureList definition for the Seccomp field trial.
100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 100 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
101 base::FEATURE_DISABLED_BY_DEFAULT}; 101 base::FEATURE_DISABLED_BY_DEFAULT};
102 #endif 102 #endif
103 103
104 } // namespace features 104 } // namespace features
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/rtc_peer_connection_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698