| Index: remoting/protocol/http_ice_config_request.cc
|
| diff --git a/remoting/protocol/http_ice_config_request.cc b/remoting/protocol/http_ice_config_request.cc
|
| index 1ae64144703d28fb525f0be88186ab5b75b0e920..7e8e5aabda1800cba38d215a89db226e88940292 100644
|
| --- a/remoting/protocol/http_ice_config_request.cc
|
| +++ b/remoting/protocol/http_ice_config_request.cc
|
| @@ -129,7 +129,8 @@ void HttpIceConfigRequest::OnResponse(const UrlRequest::Result& result) {
|
| return;
|
| }
|
|
|
| - scoped_ptr<base::Value> json = base::JSONReader::Read(result.response_body);
|
| + std::unique_ptr<base::Value> json =
|
| + base::JSONReader::Read(result.response_body);
|
| base::DictionaryValue* dictionary = nullptr;
|
| base::ListValue* ice_servers_list = nullptr;
|
| if (!json || !json->GetAsDictionary(&dictionary) ||
|
|
|