Update for move of scoped_nsobject header and namespace

See http://src.chromium.org/viewvc/chrome?view=revision&revision=207616.
This commit is contained in:
Adam Roben 2013-10-07 15:17:39 -04:00
parent 1e99ec9aed
commit 64a5ce6e15
3 changed files with 7 additions and 7 deletions

View file

@ -8,7 +8,7 @@
#import "browser/notification_presenter.h"
#import "base/memory/scoped_nsobject.h"
#import "base/mac/scoped_nsobject.h"
#import <map>
@class BRYUserNotificationCenterDelegate;
@ -30,8 +30,8 @@ class NotificationPresenterMac : public NotificationPresenter {
int notification_id) OVERRIDE;
private:
std::map<std::string, scoped_nsobject<NSUserNotification>> notification_map_;
scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_;
std::map<std::string, base::scoped_nsobject<NSUserNotification>> notification_map_;
base::scoped_nsobject<BRYUserNotificationCenterDelegate> delegate_;
};
}