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

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

Issue 2483463002: [Offline Pages] Feature flag to allow concurrent background loading on svelte (Closed)
Patch Set: Added flag to LoginCustomFlags histogram Created 4 years, 1 month 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 &kTabReparenting, 52 &kTabReparenting,
53 &kWebApks, 53 &kWebApks,
54 &ntp_snippets::kContentSuggestionsFeature, 54 &ntp_snippets::kContentSuggestionsFeature,
55 &ntp_snippets::kOfflineBadgeFeature, 55 &ntp_snippets::kOfflineBadgeFeature,
56 &ntp_snippets::kSaveToOfflineFeature, 56 &ntp_snippets::kSaveToOfflineFeature,
57 &ntp_snippets::kSectionDismissalFeature, 57 &ntp_snippets::kSectionDismissalFeature,
58 &offline_pages::kBackgroundLoaderForDownloadsFeature, 58 &offline_pages::kBackgroundLoaderForDownloadsFeature,
59 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 59 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
60 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. 60 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
61 &offline_pages::kOfflinePagesSharingFeature, 61 &offline_pages::kOfflinePagesSharingFeature,
62 &offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature,
62 &password_manager::features::kViewPasswords, 63 &password_manager::features::kViewPasswords,
63 }; 64 };
64 65
65 } // namespace 66 } // namespace
66 67
67 // Alphabetical: 68 // Alphabetical:
68 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", 69 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
69 base::FEATURE_ENABLED_BY_DEFAULT}; 70 base::FEATURE_ENABLED_BY_DEFAULT};
70 71
71 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", 72 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 NOTREACHED(); 127 NOTREACHED();
127 return false; 128 return false;
128 } 129 }
129 130
130 bool RegisterChromeFeatureListJni(JNIEnv* env) { 131 bool RegisterChromeFeatureListJni(JNIEnv* env) {
131 return RegisterNativesImpl(env); 132 return RegisterNativesImpl(env);
132 } 133 }
133 134
134 } // namespace android 135 } // namespace android
135 } // namespace chrome 136 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698