Index: chrome/browser/about_flags.cc |
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc |
index 51672bcd2f54b0d96c361e8918c8c8231070add1..9736f1a614fbd1722daae4ed77177d85f306adf1 100644 |
--- a/chrome/browser/about_flags.cc |
+++ b/chrome/browser/about_flags.cc |
@@ -2011,6 +2011,10 @@ void GetSanitizedEnabledFlags( |
bool SkipConditionalExperiment(const Experiment& experiment) { |
if (experiment.internal_name == |
std::string("enhanced-bookmarks-experiment")) { |
+#if defined(OS_ANDROID) |
+ // On Android, user can opt in. |
+ return false; |
+#else |
CommandLine* command_line = CommandLine::ForCurrentProcess(); |
// Dont't skip experiment if it has non default value. |
// It means user selected it. |
@@ -2018,7 +2022,9 @@ bool SkipConditionalExperiment(const Experiment& experiment) { |
return false; |
return !IsEnhancedBookmarksExperimentEnabled(); |
+#endif |
} |
+ |
if ((experiment.internal_name == std::string("manual-enhanced-bookmarks")) || |
(experiment.internal_name == |
std::string("manual-enhanced-bookmarks-optout"))) { |