| Index: content/browser/notifications/notification_message_filter.cc
|
| diff --git a/content/browser/notifications/notification_message_filter.cc b/content/browser/notifications/notification_message_filter.cc
|
| index bf9fe5635fac4f9dccd4c7b568924fa2d7a226df..56064347d26ab470e7c5aa4d74596e7273e25d19 100644
|
| --- a/content/browser/notifications/notification_message_filter.cc
|
| +++ b/content/browser/notifications/notification_message_filter.cc
|
| @@ -53,12 +53,8 @@ PlatformNotificationData SanitizeNotificationData(
|
|
|
| // Returns true when |resources| looks ok, false otherwise.
|
| bool ValidateNotificationResources(const NotificationResources& resources) {
|
| - // TODO(johnme): Remove the command line check once https://crbug.com/614456
|
| - // ships to stable.
|
| if (!resources.image.drawsNothing() &&
|
| - !(base::FeatureList::IsEnabled(features::kNotificationContentImage) &&
|
| - base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableExperimentalWebPlatformFeatures))) {
|
| + !base::FeatureList::IsEnabled(features::kNotificationContentImage)) {
|
| return false;
|
| }
|
| if (resources.image.width() > blink::kWebNotificationMaxImageWidthPx ||
|
|
|