From 1cd7434a66ac07eb318e66bea5f4f73de6aa4ac3 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 11 Aug 2015 10:05:27 +0800 Subject: [PATCH] Include Foundation.h at right place --- brightray/browser/notification_presenter_mac.h | 9 ++++++--- brightray/browser/notification_presenter_mac.mm | 2 -- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/brightray/browser/notification_presenter_mac.h b/brightray/browser/notification_presenter_mac.h index 20cbee20e8..768bf2b6f1 100644 --- a/brightray/browser/notification_presenter_mac.h +++ b/brightray/browser/notification_presenter_mac.h @@ -6,10 +6,13 @@ #ifndef BRIGHTRAY_BROWSER_NOTIFICATION_PRESENTER_MAC_H_ #define BRIGHTRAY_BROWSER_NOTIFICATION_PRESENTER_MAC_H_ -#import "browser/notification_presenter.h" +#include "browser/notification_presenter.h" -#import "base/mac/scoped_nsobject.h" -#import +#include + +#import + +#include "base/mac/scoped_nsobject.h" @class BRYUserNotificationCenterDelegate; diff --git a/brightray/browser/notification_presenter_mac.mm b/brightray/browser/notification_presenter_mac.mm index 60abc6af76..81527772ff 100644 --- a/brightray/browser/notification_presenter_mac.mm +++ b/brightray/browser/notification_presenter_mac.mm @@ -13,8 +13,6 @@ #include "content/public/browser/desktop_notification_delegate.h" #include "skia/ext/skia_utils_mac.h" -#import - @interface BRYUserNotificationCenterDelegate : NSObject { @private brightray::NotificationPresenterMac* presenter_;