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

Unified Diff: chrome/browser/android/chrome_feature_list.cc

Issue 2123863004: ScreenCapture for Android phase1, part II (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adopt base::Feature instead of switches Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/chrome_feature_list.cc
diff --git a/chrome/browser/android/chrome_feature_list.cc b/chrome/browser/android/chrome_feature_list.cc
index 10554e05e299bbc8885eeb5067e3ae6f7ddab12e..105cb0817172eb21a7ad9ddc7c61643d3b83f4b9 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -64,6 +64,9 @@ const base::Feature* kFeaturesExposedToJava[] = {
const base::Feature kAllBookmarksFeature{"AllBookmarks",
base::FEATURE_ENABLED_BY_DEFAULT};
+const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
+ base::FEATURE_ENABLED_BY_DEFAULT};
+
const base::Feature kDownloadsUiFeature{"DownloadsUi",
base::FEATURE_DISABLED_BY_DEFAULT};
@@ -79,9 +82,6 @@ const base::Feature kNTPOfflinePagesFeature{"NTPOfflinePages",
const base::Feature kNTPFakeOmniboxTextFeature{
"NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT};
-const base::Feature kAndroidPayIntegrationV1{"AndroidPayIntegrationV1",
- base::FEATURE_ENABLED_BY_DEFAULT};
-
const base::Feature kPhysicalWebFeature{"PhysicalWeb",
base::FEATURE_ENABLED_BY_DEFAULT};
@@ -101,9 +101,12 @@ const base::Feature kSystemDownloadManager{"SystemDownloadManager",
base::FEATURE_ENABLED_BY_DEFAULT};
const base::Feature kTabReparenting {
- "TabReparenting", base::FEATURE_ENABLED_BY_DEFAULT
+ "TabReparenting", base::FEATURE_ENABLED_BY_DEFAULT
};
+const base::Feature kUserMediaScreenCapturing{
+ "UserMediaScreenCapturing", base::FEATURE_DISABLED_BY_DEFAULT};
+
static jboolean IsEnabled(JNIEnv* env,
const JavaParamRef<jclass>& clazz,
const JavaParamRef<jstring>& jfeature_name) {

Powered by Google App Engine
This is Rietveld 408576698