| Index: components/web_resource/resource_request_allowed_notifier.h
|
| diff --git a/components/web_resource/resource_request_allowed_notifier.h b/components/web_resource/resource_request_allowed_notifier.h
|
| index a6a16ffe6cb74cb891743a8f6c225ab87dff3a70..a6e9ac40e6bfb28f00c3ab0723ac887c97198a4a 100644
|
| --- a/components/web_resource/resource_request_allowed_notifier.h
|
| +++ b/components/web_resource/resource_request_allowed_notifier.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef COMPONENTS_WEB_RESOURCE_RESOURCE_REQUEST_ALLOWED_NOTIFIER_H_
|
| #define COMPONENTS_WEB_RESOURCE_RESOURCE_REQUEST_ALLOWED_NOTIFIER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/web_resource/eula_accepted_notifier.h"
|
| #include "net/base/network_change_notifier.h"
|
|
|
| @@ -117,7 +118,7 @@ class ResourceRequestAllowedNotifier
|
| bool waiting_for_user_to_accept_eula_;
|
|
|
| // Platform-specific notifier of EULA acceptance, or null if not needed.
|
| - scoped_ptr<EulaAcceptedNotifier> eula_notifier_;
|
| + std::unique_ptr<EulaAcceptedNotifier> eula_notifier_;
|
|
|
| // Observing service interested in request permissions.
|
| Observer* observer_;
|
|
|