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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2254343002: Add new feature flag to enable background loader for downloads (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 "chrome/browser/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 &kNTPFakeOmniboxTextFeature, 43 &kNTPFakeOmniboxTextFeature,
44 &kNTPMaterialDesign, 44 &kNTPMaterialDesign,
45 &kNTPOfflinePagesFeature, 45 &kNTPOfflinePagesFeature,
46 &kNTPToolbarFeature, 46 &kNTPToolbarFeature,
47 &kPhysicalWebFeature, 47 &kPhysicalWebFeature,
48 &kPhysicalWebIgnoreOtherClientsFeature, 48 &kPhysicalWebIgnoreOtherClientsFeature,
49 &kReadItLaterInMenu, 49 &kReadItLaterInMenu,
50 &kSystemDownloadManager, 50 &kSystemDownloadManager,
51 &kTabReparenting, 51 &kTabReparenting,
52 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 52 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
53 &offline_pages::kBackgroundLoaderForDownloadsFeature,
dougarnett 2016/08/19 00:19:24 wondering about slight better name. per chat sugge
53 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. 54 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
54 &offline_pages::kOfflinePagesSharingFeature, 55 &offline_pages::kOfflinePagesSharingFeature,
55 &password_manager::features::kViewPasswords, 56 &password_manager::features::kViewPasswords,
56 }; 57 };
57 58
58 } // namespace 59 } // namespace
59 60
60 const base::Feature kAllBookmarksFeature{"AllBookmarks", 61 const base::Feature kAllBookmarksFeature{"AllBookmarks",
61 base::FEATURE_ENABLED_BY_DEFAULT}; 62 base::FEATURE_ENABLED_BY_DEFAULT};
62 63
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 NOTREACHED(); 110 NOTREACHED();
110 return false; 111 return false;
111 } 112 }
112 113
113 bool RegisterChromeFeatureListJni(JNIEnv* env) { 114 bool RegisterChromeFeatureListJni(JNIEnv* env) {
114 return RegisterNativesImpl(env); 115 return RegisterNativesImpl(env);
115 } 116 }
116 117
117 } // namespace android 118 } // namespace android
118 } // namespace chrome 119 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698