Index: third_party/WebKit/Source/web/AssociatedURLLoader.h |
diff --git a/third_party/WebKit/Source/web/AssociatedURLLoader.h b/third_party/WebKit/Source/web/AssociatedURLLoader.h |
index 990d43caf36da416bff2485a42a77c4e56d75c5b..234b8b6eadb946e1f9df0eb0eb7527a2771178e3 100644 |
--- a/third_party/WebKit/Source/web/AssociatedURLLoader.h |
+++ b/third_party/WebKit/Source/web/AssociatedURLLoader.h |
@@ -35,8 +35,8 @@ |
#include "public/platform/WebURLLoader.h" |
#include "public/web/WebURLLoaderOptions.h" |
#include "wtf/Noncopyable.h" |
+#include "wtf/OwnPtr.h" |
#include "wtf/RefPtr.h" |
-#include <memory> |
namespace blink { |
@@ -83,8 +83,8 @@ private: |
// An adapter which converts the DocumentThreadableLoaderClient method |
// calls into the WebURLLoaderClient method calls. |
- std::unique_ptr<ClientAdapter> m_clientAdapter; |
- std::unique_ptr<DocumentThreadableLoader> m_loader; |
+ OwnPtr<ClientAdapter> m_clientAdapter; |
+ OwnPtr<DocumentThreadableLoader> m_loader; |
// A ContextLifecycleObserver for cancelling |m_loader| when the Document |
// is detached. |