| Index: components/test_runner/tracked_dictionary.cc
|
| diff --git a/components/test_runner/tracked_dictionary.cc b/components/test_runner/tracked_dictionary.cc
|
| index 2903f6156805a6ee09e38a8a30c92162b379ae08..a5a8999fb242c308bd9ecf1b9a163090bd22db1e 100644
|
| --- a/components/test_runner/tracked_dictionary.cc
|
| +++ b/components/test_runner/tracked_dictionary.cc
|
| @@ -40,12 +40,12 @@ void TrackedDictionary::Set(const std::string& path,
|
| }
|
|
|
| void TrackedDictionary::SetBoolean(const std::string& path, bool new_value) {
|
| - Set(path, base::WrapUnique(new base::FundamentalValue(new_value)));
|
| + Set(path, base::MakeUnique<base::FundamentalValue>(new_value));
|
| }
|
|
|
| void TrackedDictionary::SetString(const std::string& path,
|
| const std::string& new_value) {
|
| - Set(path, base::WrapUnique(new base::StringValue(new_value)));
|
| + Set(path, base::MakeUnique<base::StringValue>(new_value));
|
| }
|
|
|
| } // namespace test_runner
|
|
|