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

Unified Diff: chrome/browser/about_flags.cc

Issue 2060623002: Implementation of Device End of Life Notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase the branch Created 4 years, 6 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/about_flags.cc
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
index f75d04813af5d12320dd30c0fa68ad8531c03537..f18b23b9e88e57d052578c923de003c8a8a4bc8b 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -1890,8 +1890,7 @@ const FeatureEntry kFeatureEntries[] = {
FEATURE_VALUE_TYPE(chrome::android::kImportantSitesInCBD)},
{"enable-autoplay-muted-videos",
IDS_FLAGS_ENABLE_AUTOPLAY_MUTED_VIDEOS_NAME,
- IDS_FLAGS_ENABLE_AUTOPLAY_MUTED_VIDEOS_DESCRIPTION,
- kOsAndroid,
+ IDS_FLAGS_ENABLE_AUTOPLAY_MUTED_VIDEOS_DESCRIPTION, kOsAndroid,
SINGLE_VALUE_TYPE(switches::kEnableAutoplayMutedVideos)},
#endif
{"enable-pointer-events", // FLAGS:RECORD_UMA
@@ -1910,8 +1909,7 @@ const FeatureEntry kFeatureEntries[] = {
IDS_FLAGS_FONT_CACHE_SCALING_DESCRIPTION, kOsAll,
FEATURE_VALUE_TYPE(features::kFontCacheScaling)},
#if defined(OS_ANDROID)
- {"enable-vr-shell",
- IDS_FLAGS_ENABLE_VR_SHELL_NAME,
+ {"enable-vr-shell", IDS_FLAGS_ENABLE_VR_SHELL_NAME,
IDS_FLAGS_ENABLE_VR_SHELL_DESCRIPTION, kOsAndroid,
ENABLE_DISABLE_VALUE_TYPE(switches::kEnableVrShell,
switches::kDisableVrShell)},
@@ -1924,6 +1922,11 @@ const FeatureEntry kFeatureEntries[] = {
IDS_FLAGS_ENABLE_WEAK_MEMORYCACHE_NAME,
IDS_FLAGS_ENABLE_WEAK_MEMORYCACHE_DESCRIPTION, kOsAll,
FEATURE_VALUE_TYPE(features::kWeakMemoryCache)},
+#if defined(OS_CHROMEOS)
+ {"enable-eol-notification", IDS_FLAGS_ENABLE_EOL_NOTIFICATION_NAME,
+ IDS_FLAGS_ENABLE_EOL_NOTIFICATION_DESCRIPTION, kOsCrOS,
+ SINGLE_VALUE_TYPE(chromeos::switches::kEnableEolNotification)},
+#endif // defined(OS_CHROMEOS)
// NOTE: Adding new command-line switches requires adding corresponding
// entries to enum "LoginCustomFlags" in histograms.xml. See note in

Powered by Google App Engine
This is Rietveld 408576698