Index: chrome/browser/extensions/api/resources_private/resources_private_api.cc |
diff --git a/chrome/browser/extensions/api/resources_private/resources_private_api.cc b/chrome/browser/extensions/api/resources_private/resources_private_api.cc |
index 1aed8116ee0ae765db765db25321d469117f3a9b..37a7fa38f91c34a758de482c62e1048085cc55f5 100644 |
--- a/chrome/browser/extensions/api/resources_private/resources_private_api.cc |
+++ b/chrome/browser/extensions/api/resources_private/resources_private_api.cc |
@@ -61,8 +61,9 @@ ResourcesPrivateGetStringsFunction::ResourcesPrivateGetStringsFunction() {} |
ResourcesPrivateGetStringsFunction::~ResourcesPrivateGetStringsFunction() {} |
ExtensionFunction::ResponseAction ResourcesPrivateGetStringsFunction::Run() { |
- scoped_ptr<get_strings::Params> params(get_strings::Params::Create(*args_)); |
- scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue); |
+ std::unique_ptr<get_strings::Params> params( |
+ get_strings::Params::Create(*args_)); |
+ std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue); |
api::resources_private::Component component = params->component; |