| Index: content/renderer/manifest/manifest_manager.h
|
| diff --git a/content/renderer/manifest/manifest_manager.h b/content/renderer/manifest/manifest_manager.h
|
| index f78482f3fcfd55179fa4e6b7bb470967dbb0074a..88304bbe39c72c368bfb1063be656524ecb292a4 100644
|
| --- a/content/renderer/manifest/manifest_manager.h
|
| +++ b/content/renderer/manifest/manifest_manager.h
|
| @@ -6,10 +6,10 @@
|
| #define CONTENT_RENDERER_MANIFEST_MANIFEST_MANAGER_H_
|
|
|
| #include <list>
|
| +#include <memory>
|
|
|
| #include "base/callback_forward.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "content/public/common/manifest.h"
|
| #include "content/public/renderer/render_frame_observer.h"
|
|
|
| @@ -64,7 +64,7 @@ class ManifestManager : public RenderFrameObserver {
|
| const std::string& data);
|
| void ResolveCallbacks(ResolveState state);
|
|
|
| - scoped_ptr<ManifestFetcher> fetcher_;
|
| + std::unique_ptr<ManifestFetcher> fetcher_;
|
|
|
| // Whether the RenderFrame may have an associated Manifest. If true, the frame
|
| // may have a manifest, if false, it can't have one. This boolean is true when
|
|
|