From cf4d966958d8154f2da3d53792ce5c27cf9d40dc Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 18:43:20 -0500 Subject: [PATCH] Fix cpplint errors in notification_presenter_mac.h --- brightray/browser/notification_presenter_mac.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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> notification_map_; + typedef NotificationMap std::map>; + NotificationMap notification_map_; base::scoped_nsobject delegate_; };