| Index: content/browser/loader/navigation_url_loader_impl.cc
|
| diff --git a/content/browser/loader/navigation_url_loader_impl.cc b/content/browser/loader/navigation_url_loader_impl.cc
|
| index 2cae9a6237240334d3d026ea6b1d5f5075744b9b..d5298188c13a2a3174600e6ce4853a8c26f5d195 100644
|
| --- a/content/browser/loader/navigation_url_loader_impl.cc
|
| +++ b/content/browser/loader/navigation_url_loader_impl.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/loader/navigation_url_loader_impl.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "content/browser/frame_host/navigation_request_info.h"
|
| @@ -63,7 +65,7 @@ void NavigationURLLoaderImpl::NotifyResponseStarted(
|
| scoped_ptr<StreamHandle> body) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::UI);
|
|
|
| - delegate_->OnResponseStarted(response, body.Pass());
|
| + delegate_->OnResponseStarted(response, std::move(body));
|
| }
|
|
|
| void NavigationURLLoaderImpl::NotifyRequestFailed(bool in_cache,
|
|
|