| Index: extensions/browser/api/diagnostics/diagnostics_api_chromeos.cc
|
| diff --git a/extensions/browser/api/diagnostics/diagnostics_api_chromeos.cc b/extensions/browser/api/diagnostics/diagnostics_api_chromeos.cc
|
| index f14b8fb0cbe60a03643b44a350f01ca8d65a3b01..6186bc7783032a1e4d50f64c1820dd4ec296a5ae 100644
|
| --- a/extensions/browser/api/diagnostics/diagnostics_api_chromeos.cc
|
| +++ b/extensions/browser/api/diagnostics/diagnostics_api_chromeos.cc
|
| @@ -29,7 +29,7 @@ typedef base::Callback<void(
|
|
|
| bool ParseResult(const std::string& status, std::string* ip, double* latency) {
|
| // Parses the result and returns IP and latency.
|
| - scoped_ptr<base::Value> parsed_value(base::JSONReader::Read(status));
|
| + std::unique_ptr<base::Value> parsed_value(base::JSONReader::Read(status));
|
| if (!parsed_value)
|
| return false;
|
|
|
|
|