Index: chrome/browser/extensions/api/notifications/notifications_api.h |
diff --git a/chrome/browser/extensions/api/notifications/notifications_api.h b/chrome/browser/extensions/api/notifications/notifications_api.h |
index b3ef00b9f2bd98571e7592900b0b96376a4fca81..fd85025d8301483e1a9ca6cf5b0325a84862c655 100644 |
--- a/chrome/browser/extensions/api/notifications/notifications_api.h |
+++ b/chrome/browser/extensions/api/notifications/notifications_api.h |
@@ -62,7 +62,7 @@ class NotificationsCreateFunction : public NotificationsApiFunction { |
~NotificationsCreateFunction() override; |
private: |
- scoped_ptr<api::notifications::Create::Params> params_; |
+ std::unique_ptr<api::notifications::Create::Params> params_; |
DECLARE_EXTENSION_FUNCTION("notifications.create", NOTIFICATIONS_CREATE) |
}; |
@@ -78,7 +78,7 @@ class NotificationsUpdateFunction : public NotificationsApiFunction { |
~NotificationsUpdateFunction() override; |
private: |
- scoped_ptr<api::notifications::Update::Params> params_; |
+ std::unique_ptr<api::notifications::Update::Params> params_; |
DECLARE_EXTENSION_FUNCTION("notifications.update", NOTIFICATIONS_UPDATE) |
}; |
@@ -94,7 +94,7 @@ class NotificationsClearFunction : public NotificationsApiFunction { |
~NotificationsClearFunction() override; |
private: |
- scoped_ptr<api::notifications::Clear::Params> params_; |
+ std::unique_ptr<api::notifications::Clear::Params> params_; |
DECLARE_EXTENSION_FUNCTION("notifications.clear", NOTIFICATIONS_CLEAR) |
}; |