| Index: components/cronet/ios/Cronet.mm
|
| diff --git a/components/cronet/ios/Cronet.mm b/components/cronet/ios/Cronet.mm
|
| index b883049b52d3fefab00ba5ac7b4ec128cc676e90..be00e46c8c80a3a5b0df9a603aa33552bf60085d 100644
|
| --- a/components/cronet/ios/Cronet.mm
|
| +++ b/components/cronet/ios/Cronet.mm
|
| @@ -68,11 +68,11 @@ class CronetHttpProtocolHandlerDelegate
|
| public:
|
| CronetHttpProtocolHandlerDelegate(net::URLRequestContextGetter* getter,
|
| RequestFilterBlock filter)
|
| - : getter_(getter), filter_(filter, base::scoped_policy::RETAIN) {}
|
| + : getter_(getter), filter_(filter) {}
|
|
|
| void SetRequestFilterBlock(RequestFilterBlock filter) {
|
| base::AutoLock auto_lock(lock_);
|
| - filter_.reset(filter, base::scoped_policy::RETAIN);
|
| + filter_.reset(filter);
|
| }
|
|
|
| private:
|
|
|