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

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: Address petewil@ comment 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | components/offline_pages/background/BUILD.gn » ('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 "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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 &kWebApks, 54 &kWebApks,
55 &ntp_snippets::kContentSuggestionsFeature, 55 &ntp_snippets::kContentSuggestionsFeature,
56 &ntp_snippets::kIncreasedVisibility, 56 &ntp_snippets::kIncreasedVisibility,
57 &ntp_snippets::kOfflineBadgeFeature, 57 &ntp_snippets::kOfflineBadgeFeature,
58 &ntp_snippets::kSaveToOfflineFeature, 58 &ntp_snippets::kSaveToOfflineFeature,
59 &ntp_snippets::kSectionDismissalFeature, 59 &ntp_snippets::kSectionDismissalFeature,
60 &offline_pages::kBackgroundLoaderForDownloadsFeature, 60 &offline_pages::kBackgroundLoaderForDownloadsFeature,
61 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 61 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
62 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. 62 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
63 &offline_pages::kOfflinePagesSharingFeature, 63 &offline_pages::kOfflinePagesSharingFeature,
64 &offline_pages::kOfflinePagesSvelteConcurrentLoadingFeature,
Ted C 2016/11/08 17:42:13 This array says these are the features exposed to
dougarnett 2016/11/08 18:04:26 Done, thanks
64 &password_manager::features::kViewPasswords, 65 &password_manager::features::kViewPasswords,
65 }; 66 };
66 67
67 } // namespace 68 } // namespace
68 69
69 // Alphabetical: 70 // Alphabetical:
70 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1", 71 const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
71 base::FEATURE_ENABLED_BY_DEFAULT}; 72 base::FEATURE_ENABLED_BY_DEFAULT};
72 73
73 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling", 74 const base::Feature kCCTExternalLinkHandling{"CCTExternalLinkHandling",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 NOTREACHED(); 129 NOTREACHED();
129 return false; 130 return false;
130 } 131 }
131 132
132 bool RegisterChromeFeatureListJni(JNIEnv* env) { 133 bool RegisterChromeFeatureListJni(JNIEnv* env) {
133 return RegisterNativesImpl(env); 134 return RegisterNativesImpl(env);
134 } 135 }
135 136
136 } // namespace android 137 } // namespace android
137 } // namespace chrome 138 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | components/offline_pages/background/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698