| Index: chrome/common/extensions/extension_test_util.cc
 | 
| diff --git a/chrome/common/extensions/extension_test_util.cc b/chrome/common/extensions/extension_test_util.cc
 | 
| index 697be603c4bc0e2d03eb2bccbb2b1403ffc8c32f..e3f0cc40770e3f89f2ccefedab9d36d51376a09c 100644
 | 
| --- a/chrome/common/extensions/extension_test_util.cc
 | 
| +++ b/chrome/common/extensions/extension_test_util.cc
 | 
| @@ -4,6 +4,8 @@
 | 
|  
 | 
|  #include "chrome/common/extensions/extension_test_util.h"
 | 
|  
 | 
| +#include <memory>
 | 
| +
 | 
|  #include "base/files/file_path.h"
 | 
|  #include "base/json/json_file_value_serializer.h"
 | 
|  #include "base/path_service.h"
 | 
| @@ -31,7 +33,7 @@ scoped_refptr<Extension> LoadManifestUnchecked(const std::string& dir,
 | 
|               .AppendASCII(test_file);
 | 
|  
 | 
|    JSONFileValueDeserializer deserializer(path);
 | 
| -  scoped_ptr<base::Value> result = deserializer.Deserialize(NULL, error);
 | 
| +  std::unique_ptr<base::Value> result = deserializer.Deserialize(NULL, error);
 | 
|    if (!result)
 | 
|      return NULL;
 | 
|    const base::DictionaryValue* dict;
 | 
| 
 |