Index: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
index 4a9596f04f1d52d157a4df3039a38709dafa2037..1615aac85e0c65f7eedf3123c69e4257dddfdc3d 100644 |
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp |
@@ -39,6 +39,7 @@ |
#include "core/html/imports/HTMLImportsController.h" |
#include "core/loader/DocumentWriter.h" |
#include "platform/network/ContentSecurityPolicyResponseHeaders.h" |
+#include <memory> |
namespace blink { |
@@ -71,7 +72,7 @@ void HTMLImportLoader::startLoading(RawResource* resource) |
setResource(resource); |
} |
-void HTMLImportLoader::responseReceived(Resource* resource, const ResourceResponse& response, PassOwnPtr<WebDataConsumerHandle> handle) |
+void HTMLImportLoader::responseReceived(Resource* resource, const ResourceResponse& response, std::unique_ptr<WebDataConsumerHandle> handle) |
{ |
ASSERT_UNUSED(handle, !handle); |
// Resource may already have been loaded with the import loader |