| Index: components/quirks/quirks_client.h
|
| diff --git a/components/quirks/quirks_client.h b/components/quirks/quirks_client.h
|
| index 5219a5cd708f45a96f9ecb60bace0da864f237aa..86c7adab1bd6007497931fefcdbe79b0b3024e1d 100644
|
| --- a/components/quirks/quirks_client.h
|
| +++ b/components/quirks/quirks_client.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef COMPONENTS_QUIRKS_QUIRKS_CLIENT_H_
|
| #define COMPONENTS_QUIRKS_QUIRKS_CLIENT_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/thread_checker.h"
|
| #include "base/timer/timer.h"
|
| #include "net/base/backoff_entry.h"
|
| @@ -62,7 +63,7 @@ class QuirksClient : public net::URLFetcherDelegate {
|
| base::ThreadChecker thread_checker_;
|
|
|
| // This fetcher is used to download icc file.
|
| - scoped_ptr<net::URLFetcher> url_fetcher_;
|
| + std::unique_ptr<net::URLFetcher> url_fetcher_;
|
|
|
| // Pending retry.
|
| base::OneShotTimer request_scheduled_;
|
|
|