| Index: third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.h b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| index 7c7b85fe4643c8ff528f47e241610f977d8a32ee..bf69836b5749004496a012ae57b1ed574a0b25b9 100644
|
| --- a/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| +++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h
|
| @@ -70,8 +70,9 @@ class CORE_EXPORT DocumentLoader
|
| public:
|
| static DocumentLoader* create(LocalFrame* frame,
|
| const ResourceRequest& request,
|
| - const SubstituteData& data) {
|
| - return new DocumentLoader(frame, request, data);
|
| + const SubstituteData& data,
|
| + bool clientRedirect) {
|
| + return new DocumentLoader(frame, request, data, clientRedirect);
|
| }
|
| ~DocumentLoader() override;
|
|
|
| @@ -183,7 +184,10 @@ class CORE_EXPORT DocumentLoader
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| protected:
|
| - DocumentLoader(LocalFrame*, const ResourceRequest&, const SubstituteData&);
|
| + DocumentLoader(LocalFrame*,
|
| + const ResourceRequest&,
|
| + const SubstituteData&,
|
| + bool clientRedirect);
|
|
|
| void didRedirect(const KURL& oldURL, const KURL& newURL);
|
|
|
|
|