| Index: third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebDataSourceImpl.cpp b/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| index 40276873e9c783464f314170b834f102f5e9cede..6ba13fb5e008884083604daec1d06f3f4837de94 100644
|
| --- a/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| @@ -42,8 +42,9 @@ namespace blink {
|
|
|
| WebDataSourceImpl* WebDataSourceImpl::create(LocalFrame* frame,
|
| const ResourceRequest& request,
|
| - const SubstituteData& data) {
|
| - return new WebDataSourceImpl(frame, request, data);
|
| + const SubstituteData& data,
|
| + bool clientRedirect) {
|
| + return new WebDataSourceImpl(frame, request, data, clientRedirect);
|
| }
|
|
|
| const WebURLRequest& WebDataSourceImpl::originalRequest() const {
|
| @@ -136,8 +137,9 @@ WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type) {
|
|
|
| WebDataSourceImpl::WebDataSourceImpl(LocalFrame* frame,
|
| const ResourceRequest& request,
|
| - const SubstituteData& data)
|
| - : DocumentLoader(frame, request, data),
|
| + const SubstituteData& data,
|
| + bool clientRedirect)
|
| + : DocumentLoader(frame, request, data, clientRedirect),
|
| m_originalRequestWrapper(DocumentLoader::originalRequest()),
|
| m_requestWrapper(DocumentLoader::request()),
|
| m_responseWrapper(DocumentLoader::response()) {}
|
|
|