| Index: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| index d36451dcfc26b63a7420483925c85def9e8d0e0e..95186d9791afa27888d8dcfd0e5de38cf9d56906 100644
|
| --- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| +++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc
|
| @@ -513,7 +513,7 @@ void ChromeResourceDispatcherHostDelegate::AppendStandardResourceThrottles(
|
| MaybeCreate(
|
| request, resource_type, io_data->data_reduction_proxy_io_data());
|
| if (data_reduction_proxy_throttle)
|
| - throttles->push_back(data_reduction_proxy_throttle.Pass());
|
| + throttles->push_back(std::move(data_reduction_proxy_throttle));
|
| #endif
|
|
|
| #if defined(ENABLE_SUPERVISED_USERS)
|
|
|