Index: extensions/common/value_builder.cc |
diff --git a/extensions/common/value_builder.cc b/extensions/common/value_builder.cc |
index efc2e44fad3e49602083897f0449a0876f55b47b..449fee9da3bddbd6c1fe5adcd26c4fe2117a72fd 100644 |
--- a/extensions/common/value_builder.cc |
+++ b/extensions/common/value_builder.cc |
@@ -51,8 +51,9 @@ DictionaryBuilder& DictionaryBuilder::Set(const std::string& path, |
return *this; |
} |
-DictionaryBuilder& DictionaryBuilder::Set(const std::string& path, |
- scoped_ptr<base::Value> in_value) { |
+DictionaryBuilder& DictionaryBuilder::Set( |
+ const std::string& path, |
+ std::unique_ptr<base::Value> in_value) { |
dict_->SetWithoutPathExpansion(path, std::move(in_value)); |
return *this; |
} |
@@ -90,7 +91,7 @@ ListBuilder& ListBuilder::Append(const base::string16& in_value) { |
return *this; |
} |
-ListBuilder& ListBuilder::Append(scoped_ptr<base::Value> in_value) { |
+ListBuilder& ListBuilder::Append(std::unique_ptr<base::Value> in_value) { |
list_->Append(std::move(in_value)); |
return *this; |
} |