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

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

Issue 1720403003: Ship the Credential Management API by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test. Created 4 years, 10 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 | « content/public/common/content_features.h ('k') | content/public/common/content_switches.h » ('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.
11 11
12 // Enables brotli "Accept-Encoding" advertising and "Content-Encoding" support. 12 // Enables brotli "Accept-Encoding" advertising and "Content-Encoding" support.
13 // Brotli format specification: http://www.ietf.org/id/draft-alakuijala-brotli 13 // Brotli format specification: http://www.ietf.org/id/draft-alakuijala-brotli
14 const base::Feature kBrotliEncoding{"brotli-encoding", 14 const base::Feature kBrotliEncoding{"brotli-encoding",
15 base::FEATURE_DISABLED_BY_DEFAULT}; 15 base::FEATURE_DISABLED_BY_DEFAULT};
16 16
17 // Enables the credential management API:
18 // https://w3c.github.io/webappsec-credential-management/
19 const base::Feature kCredentialManagementAPI{"CredentialManagementAPI",
20 base::FEATURE_ENABLED_BY_DEFAULT};
21
17 // Downloads resumption will be controllable via a flag until it's enabled 22 // Downloads resumption will be controllable via a flag until it's enabled
18 // permanently. See https://crbug.com/7648 23 // permanently. See https://crbug.com/7648
19 const base::Feature kDownloadResumption{"DownloadResumption", 24 const base::Feature kDownloadResumption{"DownloadResumption",
20 base::FEATURE_DISABLED_BY_DEFAULT}; 25 base::FEATURE_DISABLED_BY_DEFAULT};
21 26
22 // The Experimental Framework for controlling access to API experiments. 27 // The Experimental Framework for controlling access to API experiments.
23 const base::Feature kExperimentalFramework{"ExperimentalFramework", 28 const base::Feature kExperimentalFramework{"ExperimentalFramework",
24 base::FEATURE_DISABLED_BY_DEFAULT}; 29 base::FEATURE_DISABLED_BY_DEFAULT};
25 30
26 // An experiment to optimize resource loading IPC for small resources. 31 // An experiment to optimize resource loading IPC for small resources.
(...skipping 25 matching lines...) Expand all
52 const base::Feature kWebFontsIntervention{"WebFontsIntervention", 57 const base::Feature kWebFontsIntervention{"WebFontsIntervention",
53 base::FEATURE_DISABLED_BY_DEFAULT}; 58 base::FEATURE_DISABLED_BY_DEFAULT};
54 59
55 #if defined(OS_ANDROID) 60 #if defined(OS_ANDROID)
56 // FeatureList definition for the Seccomp field trial. 61 // FeatureList definition for the Seccomp field trial.
57 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 62 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
58 base::FEATURE_DISABLED_BY_DEFAULT}; 63 base::FEATURE_DISABLED_BY_DEFAULT};
59 #endif 64 #endif
60 65
61 } // namespace features 66 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698