Chromium Code Reviews| Index: chrome/browser/notifications/native_notification_display_service.cc |
| diff --git a/chrome/browser/notifications/native_notification_display_service.cc b/chrome/browser/notifications/native_notification_display_service.cc |
| index 69d06a11a7b3e404674a689e971d58264541912b..2ffcd75fd3929c32998c54c28a73145fdbef9796 100644 |
| --- a/chrome/browser/notifications/native_notification_display_service.cc |
| +++ b/chrome/browser/notifications/native_notification_display_service.cc |
| @@ -60,8 +60,9 @@ NativeNotificationDisplayService::NativeNotificationDisplayService( |
| AddNotificationHandler(NotificationCommon::PERSISTENT, |
| base::MakeUnique<PersistentNotificationHandler>()); |
| #if BUILDFLAG(ENABLE_EXTENSIONS) |
| - AddNotificationHandler(NotificationCommon::EXTENSION, |
| - base::MakeUnique<ExtensionNotificationHandler>()); |
| + AddNotificationHandler( |
| + NotificationCommon::EXTENSION, |
| + base::MakeUnique<extensions::ExtensionNotificationHandler>()); |
|
dewittj
2017/05/16 22:07:17
Depending on where else this type is referenced, i
Miguel Garcia
2017/05/20 07:04:10
I've noticed this pattern with the notification de
|
| #endif |
| } |