From 7c52838ece13c80760a4e0e44ef6e044d6e1b40b Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Mon, 20 Apr 2015 13:29:10 -0700 Subject: [PATCH] Fix the build on OS X --- brightray/browser/notification_presenter_mac.h | 1 + brightray/browser/notification_presenter_mac.mm | 1 + 2 files changed, 2 insertions(+) diff --git a/brightray/browser/notification_presenter_mac.h b/brightray/browser/notification_presenter_mac.h index fd9dd737d9..20cbee20e8 100644 --- a/brightray/browser/notification_presenter_mac.h +++ b/brightray/browser/notification_presenter_mac.h @@ -23,6 +23,7 @@ class NotificationPresenterMac : public NotificationPresenter { // NotificationPresenter: void ShowNotification( const content::PlatformNotificationData&, + const SkBitmap& icon, scoped_ptr delegate, base::Closure* cancel_callback) override; diff --git a/brightray/browser/notification_presenter_mac.mm b/brightray/browser/notification_presenter_mac.mm index f0a08d7597..cbe25c65a4 100644 --- a/brightray/browser/notification_presenter_mac.mm +++ b/brightray/browser/notification_presenter_mac.mm @@ -41,6 +41,7 @@ NotificationPresenterMac::~NotificationPresenterMac() { void NotificationPresenterMac::ShowNotification( const content::PlatformNotificationData& data, + const SkBitmap& icon, scoped_ptr delegate, base::Closure* cancel_callback) { auto notification = [[NSUserNotification alloc] init];