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

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

Issue 1538933002: Enable download resumption by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Catch up with master Created 5 years 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 "content/public/common/content_features.h" 5 #include "content/public/common/content_features.h"
6 6
7 namespace features { 7 namespace features {
8 8
9 // All features in alphabetical order. 9 // All features in alphabetical order.
10 10
11 // Downloads resumption will be controllable via a flag until it's enabled
12 // permanently. See https://crbug.com/7648
13 const base::Feature kDownloadResumption = {
Alexei Svitkine (slow) 2015/12/18 20:46:10 Nit: Use same syntax as the ones below (no =).
asanka 2015/12/18 22:07:52 Done.
14 "DownloadResumption", base::FEATURE_ENABLED_BY_DEFAULT};
15
11 // The Experimental Framework for controlling access to API experiments. 16 // The Experimental Framework for controlling access to API experiments.
12 const base::Feature kExperimentalFramework{"ExperimentalFramework", 17 const base::Feature kExperimentalFramework{"ExperimentalFramework",
13 base::FEATURE_DISABLED_BY_DEFAULT}; 18 base::FEATURE_DISABLED_BY_DEFAULT};
14 19
15 #if defined(OS_ANDROID) 20 #if defined(OS_ANDROID)
16 // FeatureList definition for the Seccomp field trial. 21 // FeatureList definition for the Seccomp field trial.
17 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 22 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
18 base::FEATURE_DISABLED_BY_DEFAULT}; 23 base::FEATURE_DISABLED_BY_DEFAULT};
19 #endif 24 #endif
20 25
21 } // namespace features 26 } // 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