| Index: components/quirks/quirks_client.cc
 | 
| diff --git a/components/quirks/quirks_client.cc b/components/quirks/quirks_client.cc
 | 
| index 93775e85f793b6be8e74165ba5458565ea97d852..383c91126a6c7bfd254c38dbb54187ce3fe06901 100644
 | 
| --- a/components/quirks/quirks_client.cc
 | 
| +++ b/components/quirks/quirks_client.cc
 | 
| @@ -153,7 +153,7 @@ void QuirksClient::Retry() {
 | 
|  bool QuirksClient::ParseResult(const std::string& result, std::string* data) {
 | 
|    std::string data64;
 | 
|    const base::DictionaryValue* dict;
 | 
| -  scoped_ptr<base::Value> json = base::JSONReader::Read(result);
 | 
| +  std::unique_ptr<base::Value> json = base::JSONReader::Read(result);
 | 
|    if (!json || !json->GetAsDictionary(&dict) ||
 | 
|        !dict->GetString("icc", &data64)) {
 | 
|      VLOG(1) << "Failed to parse JSON icc data";
 | 
| 
 |