Index: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h |
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h |
index 0ecc96db855a3375081cb114e9160e0fec8674c1..b029f2b683362446ec00613da53a4267d0f439f2 100644 |
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h |
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h |
@@ -35,8 +35,9 @@ |
#include "core/fetch/RawResource.h" |
#include "core/fetch/ResourceOwner.h" |
#include "platform/heap/Handle.h" |
+#include "wtf/OwnPtr.h" |
+#include "wtf/PassOwnPtr.h" |
#include "wtf/Vector.h" |
-#include <memory> |
namespace blink { |
@@ -96,7 +97,7 @@ private: |
HTMLImportLoader(HTMLImportsController*); |
// RawResourceClient |
- void responseReceived(Resource*, const ResourceResponse&, std::unique_ptr<WebDataConsumerHandle>) override; |
+ void responseReceived(Resource*, const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>) override; |
void dataReceived(Resource*, const char* data, size_t length) override; |
void notifyFinished(Resource*) override; |
String debugName() const override { return "HTMLImportLoader"; } |