| Index: third_party/WebKit/Source/core/fetch/RawResource.cpp
|
| diff --git a/third_party/WebKit/Source/core/fetch/RawResource.cpp b/third_party/WebKit/Source/core/fetch/RawResource.cpp
|
| index 37c225d31083b9380e64516edee3504b4d1296fc..d6cfe5764744c359cf55a21268e55da4f1a3c563 100644
|
| --- a/third_party/WebKit/Source/core/fetch/RawResource.cpp
|
| +++ b/third_party/WebKit/Source/core/fetch/RawResource.cpp
|
| @@ -31,6 +31,7 @@
|
| #include "core/fetch/ResourceFetcher.h"
|
| #include "core/fetch/ResourceLoader.h"
|
| #include "platform/HTTPNames.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -142,7 +143,7 @@ void RawResource::willNotFollowRedirect()
|
| c->redirectBlocked();
|
| }
|
|
|
| -void RawResource::responseReceived(const ResourceResponse& response, PassOwnPtr<WebDataConsumerHandle> handle)
|
| +void RawResource::responseReceived(const ResourceResponse& response, std::unique_ptr<WebDataConsumerHandle> handle)
|
| {
|
| bool isSuccessfulRevalidation = isCacheValidator() && response.httpStatusCode() == 304;
|
| Resource::responseReceived(response, nullptr);
|
|
|