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