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

@ -56,7 +56,7 @@ struct NotificationID {
int notification_id;
};
scoped_nsobject<NSUserNotification> CreateUserNotification(
base::scoped_nsobject<NSUserNotification> CreateUserNotification(
const content::ShowDesktopNotificationHostMsgParams& params,
int render_process_id,
int render_view_id) {
@ -65,7 +65,7 @@ scoped_nsobject<NSUserNotification> CreateUserNotification(
notification.informativeText = base::SysUTF16ToNSString(params.body);
notification.userInfo = NotificationID(render_process_id, render_view_id, params.notification_id).GetUserInfo();
return scoped_nsobject<NSUserNotification>(notification);
return base::scoped_nsobject<NSUserNotification>(notification);
}
}