| Index: third_party/WebKit/Source/core/fetch/Resource.h
|
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.h b/third_party/WebKit/Source/core/fetch/Resource.h
|
| index c524d3be6b5550d4f000f2465bdb1c3009004af7..36a1f2ad5b7be1cc22836cc07b21ac6b3616eb6b 100644
|
| --- a/third_party/WebKit/Source/core/fetch/Resource.h
|
| +++ b/third_party/WebKit/Source/core/fetch/Resource.h
|
| @@ -37,8 +37,8 @@
|
| #include "wtf/Allocator.h"
|
| #include "wtf/HashCountedSet.h"
|
| #include "wtf/HashSet.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/text/WTFString.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -181,7 +181,7 @@ public:
|
| // already been made to not follow it.
|
| virtual void willNotFollowRedirect() {}
|
|
|
| - virtual void responseReceived(const ResourceResponse&, PassOwnPtr<WebDataConsumerHandle>);
|
| + virtual void responseReceived(const ResourceResponse&, std::unique_ptr<WebDataConsumerHandle>);
|
| void setResponse(const ResourceResponse&);
|
| const ResourceResponse& response() const { return m_response; }
|
|
|
|
|