Fix cpplint errors in notification_presenter_mac.h

This commit is contained in:
Adam Roben 2013-11-17 18:43:20 -05:00
parent d4ad45334f
commit cf4d966958

View file

@ -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_;
};