| Index: extensions/browser/blob_holder.h
|
| diff --git a/extensions/browser/blob_holder.h b/extensions/browser/blob_holder.h
|
| index 68e519d608c32977fc2cc2c0564e407118805b72..0befa3ca49e3d9f57838174a51188b29090eff98 100644
|
| --- a/extensions/browser/blob_holder.h
|
| +++ b/extensions/browser/blob_holder.h
|
| @@ -11,7 +11,6 @@
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/linked_ptr.h"
|
| #include "base/supports_user_data.h"
|
|
|
| namespace content {
|
| @@ -37,8 +36,8 @@ class BlobHolder : public base::SupportsUserData::Data {
|
| void HoldBlobReference(std::unique_ptr<content::BlobHandle> blob);
|
|
|
| private:
|
| - typedef std::multimap<std::string, linked_ptr<content::BlobHandle> >
|
| - BlobHandleMultimap;
|
| + using BlobHandleMultimap =
|
| + std::multimap<std::string, std::unique_ptr<content::BlobHandle>>;
|
|
|
| explicit BlobHolder(content::RenderProcessHost* render_process_host);
|
|
|
|
|