| Index: third_party/WebKit/Source/core/loader/DocumentThreadableLoaderClient.h
|
| diff --git a/third_party/WebKit/Source/core/loader/DocumentThreadableLoaderClient.h b/third_party/WebKit/Source/core/loader/DocumentThreadableLoaderClient.h
|
| index 179ef361983e1cbd4bdf1737b493f8246925d626..8ce743d62c3f24dae852d866c5038d91cb43455d 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentThreadableLoaderClient.h
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentThreadableLoaderClient.h
|
| @@ -44,7 +44,10 @@ class DocumentThreadableLoaderClient : public ThreadableLoaderClient {
|
| public:
|
| bool isDocumentThreadableLoaderClient() final { return true; }
|
|
|
| - virtual void willFollowRedirect(ResourceRequest& /*newRequest*/, const ResourceResponse& /*redirectResponse*/) { }
|
| + virtual bool willFollowRedirect(const ResourceRequest& /*newRequest*/, const ResourceResponse& /*redirectResponse*/)
|
| + {
|
| + return true;
|
| + }
|
|
|
| protected:
|
| DocumentThreadableLoaderClient() { }
|
|
|