| Index: content/renderer/fetchers/multi_resolution_image_resource_fetcher.h
|
| diff --git a/content/renderer/fetchers/multi_resolution_image_resource_fetcher.h b/content/renderer/fetchers/multi_resolution_image_resource_fetcher.h
|
| index 4d132ce8f844888afa63d1d0a00c2fb2a34971e1..37a22220f6e73b936aac0d4b4caf8e95ce93b5e7 100644
|
| --- a/content/renderer/fetchers/multi_resolution_image_resource_fetcher.h
|
| +++ b/content/renderer/fetchers/multi_resolution_image_resource_fetcher.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef CONTENT_RENDERER_FETCHERS_MULTI_RESOLUTION_IMAGE_RESOURCE_FETCHER_H_
|
| #define CONTENT_RENDERER_FETCHERS_MULTI_RESOLUTION_IMAGE_RESOURCE_FETCHER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "third_party/WebKit/public/platform/WebURLRequest.h"
|
| #include "url/gurl.h"
|
|
|
| @@ -69,7 +69,7 @@ class MultiResolutionImageResourceFetcher {
|
| const GURL image_url_;
|
|
|
| // Does the actual download.
|
| - scoped_ptr<ResourceFetcher> fetcher_;
|
| + std::unique_ptr<ResourceFetcher> fetcher_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MultiResolutionImageResourceFetcher);
|
| };
|
|
|