From cdbfff2fcf0f89cc9ccd27db50f1ed30c63eb053 Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Sun, 17 Nov 2013 19:15:26 -0500 Subject: [PATCH] Fix backwards typedef --- brightray/browser/notification_presenter_mac.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brightray/browser/notification_presenter_mac.h b/brightray/browser/notification_presenter_mac.h index fef6bde3f27..e4656b98f02 100644 --- a/brightray/browser/notification_presenter_mac.h +++ b/brightray/browser/notification_presenter_mac.h @@ -30,8 +30,8 @@ class NotificationPresenterMac : public NotificationPresenter { int notification_id) OVERRIDE; private: - typedef NotificationMap std::map>; + typedef std::map> + NotificationMap; NotificationMap notification_map_; base::scoped_nsobject delegate_; };