Index: content/child/runtime_features.cc |
diff --git a/content/child/runtime_features.cc b/content/child/runtime_features.cc |
index b783df3bdd63ad83df54c5ef83fcb5d74ad293b0..5934cedf57cf983376019b23eda9c138a001d73a 100644 |
--- a/content/child/runtime_features.cc |
+++ b/content/child/runtime_features.cc |
@@ -68,6 +68,12 @@ static void SetRuntimeFeatureDefaultsForPlatform() { |
#if defined(OS_CHROMEOS) || defined(OS_ANDROID) || defined(OS_MACOSX) |
WebRuntimeFeatures::enableWebBluetooth(true); |
#endif |
+ |
+// Notification BigPicture is not available on MacOSX native |
+// notifications |
Peter Beverloo
2017/04/07 20:30:16
// The Notification Center on Mac OS X does not su
Miguel Garcia
2017/04/07 20:35:59
Done.
|
+#if defined(OS_MACOSX) |
+ WebRuntimeFeatures::enableNotificationContentImage(false); |
+#endif |
} |
void SetRuntimeFeaturesDefaultsAndUpdateFromArgs( |