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

Unified Diff: chrome/browser/about_flags.cc

Issue 5025001: Removed Labs section from Chrome OS settings page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added labs to about:flags page Created 10 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 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 366e173ce396597b250610bfe640e6b5d5799012..395217088968b6702c43bad96af47504f3a2f7d3 100644
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -38,12 +38,34 @@ const Experiment kExperiments[] = {
#endif
},
{
+ "media-player", // Do not change; see above.
+ IDS_FLAGS_MEDIA_PLAYER_NAME,
+ IDS_FLAGS_MEDIA_PLAYER_DESCRIPTION,
+ kOsCrOS,
+#if defined(OS_CHROMEOS)
+ // The switch exists only on Chrome OS.
+ switches::kEnableMediaPlayer
+#else
+ ""
+#endif
+ },
+ {
+ "advanced-fs", // Do not change; see above.
+ IDS_FLAGS_ADVANCED_FS_NAME,
+ IDS_FLAGS_ADVANCED_FS_DESCRIPTION,
+ kOsCrOS,
+#if defined(OS_CHROMEOS)
+ // The switch exists only on Chrome OS.
+ switches::kEnableAdvancedFileSystem
+#else
+ ""
+#endif
+ },
+ {
"vertical-tabs", // Do not change; see above.
IDS_FLAGS_SIDE_TABS_NAME,
IDS_FLAGS_SIDE_TABS_DESCRIPTION,
- // TODO(thakis): Move sidetabs to about:flags on ChromeOS
- // http://crbug.com/57634
- kOsWin,
+ kOsWin | kOsCrOS,
switches::kEnableVerticalTabs
},
{

Powered by Google App Engine
This is Rietveld 408576698