| Index: third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| diff --git a/third_party/WebKit/Source/web/WebDataSourceImpl.h b/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| index 879bdd8488996975512c3001e30142ec3e8bf72d..c716a0f2be076ad5ede6a13fa21f8b028492d153 100644
|
| --- a/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| +++ b/third_party/WebKit/Source/web/WebDataSourceImpl.h
|
| @@ -46,7 +46,8 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
|
| public:
|
| static WebDataSourceImpl* create(LocalFrame*,
|
| const ResourceRequest&,
|
| - const SubstituteData&);
|
| + const SubstituteData&,
|
| + bool clientRedirect);
|
|
|
| static WebDataSourceImpl* fromDocumentLoader(DocumentLoader* loader) {
|
| return static_cast<WebDataSourceImpl*>(loader);
|
| @@ -77,7 +78,10 @@ class WebDataSourceImpl final : public DocumentLoader, public WebDataSource {
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - WebDataSourceImpl(LocalFrame*, const ResourceRequest&, const SubstituteData&);
|
| + WebDataSourceImpl(LocalFrame*,
|
| + const ResourceRequest&,
|
| + const SubstituteData&,
|
| + bool clientRedirect);
|
| ~WebDataSourceImpl() override;
|
| void detachFromFrame() override;
|
| String debugName() const override { return "WebDataSourceImpl"; }
|
|
|