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

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: add entry in LoginCustomFlags as bots request 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 bf4dc16adc095011f39078d5847b7263c0f0ad4d..8308b8c6a147e3f8783a97d8aa9ece23042390c9 100644
--- a/chrome/browser/android/chrome_feature_list.cc
+++ b/chrome/browser/android/chrome_feature_list.cc
@@ -65,6 +65,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};
@@ -80,9 +83,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};
@@ -104,9 +104,11 @@ const base::Feature kSpecialLocaleWrapper{"SpecialLocaleWrapper",
const base::Feature kSystemDownloadManager{"SystemDownloadManager",
base::FEATURE_ENABLED_BY_DEFAULT};
-const base::Feature kTabReparenting {
- "TabReparenting", base::FEATURE_ENABLED_BY_DEFAULT
-};
+const base::Feature kTabReparenting{"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,

Powered by Google App Engine
This is Rietveld 408576698