Fix backwards typedef

This commit is contained in:
Adam Roben 2013-11-17 19:15:26 -05:00
parent 654f415a49
commit cdbfff2fcf

View file

@ -30,8 +30,8 @@ class NotificationPresenterMac : public NotificationPresenter {
int notification_id) OVERRIDE; int notification_id) OVERRIDE;
private: private:
typedef NotificationMap std::map<std::string, typedef std::map<std::string, base::scoped_nsobject<NSUserNotification>>
base::scoped_nsobject<NSUserNotification>>; NotificationMap;
NotificationMap notification_map_; NotificationMap notification_map_;
base::scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_; base::scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_;
}; };