diff --git a/brightray/browser/notification_presenter_mac.h b/brightray/browser/notification_presenter_mac.h
index b2a9e59fca..fef6bde3f2 100644
--- a/brightray/browser/notification_presenter_mac.h
+++ b/brightray/browser/notification_presenter_mac.h
@@ -30,7 +30,9 @@ class NotificationPresenterMac : public NotificationPresenter {
       int notification_id) OVERRIDE;
 
  private:
-  std::map<std::string, base::scoped_nsobject<NSUserNotification>> notification_map_;
+  typedef NotificationMap std::map<std::string,
+                                   base::scoped_nsobject<NSUserNotification>>;
+  NotificationMap notification_map_;
   base::scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_;
 };