| 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 1cf7e7b4d73d9defed4ef75c37e14e366fb76c6b..6a086e9afd60db29d40e55a92a43b18f7d1a0096 100644
|
| --- a/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebDataSourceImpl.cpp
|
| @@ -59,7 +59,6 @@ const WebURLRequest& WebDataSourceImpl::request() const
|
|
|
| const WebURLResponse& WebDataSourceImpl::response() const
|
| {
|
| - m_responseWrapper.bind(DocumentLoader::response());
|
| return m_responseWrapper;
|
| }
|
|
|
| @@ -135,6 +134,7 @@ WebNavigationType WebDataSourceImpl::toWebNavigationType(NavigationType type)
|
|
|
| WebDataSourceImpl::WebDataSourceImpl(LocalFrame* frame, const ResourceRequest& request, const SubstituteData& data)
|
| : DocumentLoader(frame, request, data)
|
| + , m_responseWrapper(DocumentLoader::response())
|
| {
|
| }
|
|
|
|
|