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:
parent
1e99ec9aed
commit
64a5ce6e15
3 changed files with 7 additions and 7 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue