Index: content/child/runtime_features.cc |
diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc |
index d100e5beccb97bfc716167f23867feffbcfde0fe..875dbcb6b9080b1a118f3bdcdddf66c6e8e0082e 100644 |
--- a/content/child/runtime_features.cc |
+++ b/content/child/runtime_features.cc |
@@ -64,6 +64,9 @@ static void SetRuntimeFeatureDefaultsForPlatform() { |
// the feature via experimental web platform features. |
if (base::FieldTrialList::FindFullName("NavigationTransitions") == "Enabled") |
WebRuntimeFeatures::enableNavigationTransitions(true); |
+ // Android won't be able to reliably support non-persistent notifications, the |
+ // intended behavior for which is in flux by itself. |
+ WebRuntimeFeatures::enableNotificationConstructor(false); |
#else |
WebRuntimeFeatures::enableNavigatorContentUtils(true); |
#endif // defined(OS_ANDROID) |