| Index: third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
|
| diff --git a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
|
| index c0d1158269ecd7c3b204aa9d386add933153f7c0..6458fd97e4548bc20223f64aad87f760335308be 100644
|
| --- a/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
|
| +++ b/third_party/WebKit/Source/platform/blob/BlobRegistry.cpp
|
| @@ -48,6 +48,7 @@
|
| #include "wtf/Threading.h"
|
| #include "wtf/text/StringHash.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -88,7 +89,7 @@ static void removeFromOriginMap(const KURL& url)
|
| originMap()->remove(url.getString());
|
| }
|
|
|
| -void BlobRegistry::registerBlobData(const String& uuid, PassOwnPtr<BlobData> data)
|
| +void BlobRegistry::registerBlobData(const String& uuid, std::unique_ptr<BlobData> data)
|
| {
|
| blobRegistry()->registerBlobData(uuid, WebBlobData(std::move(data)));
|
| }
|
|
|