Index: content/child/v8_value_converter_impl_unittest.cc |
diff --git a/content/child/v8_value_converter_impl_unittest.cc b/content/child/v8_value_converter_impl_unittest.cc |
index 2997770e8239095678e1a733f787b4e8574eb4c1..394af66db0f36528d05dcd570cf49a9a4ebe3478 100644 |
--- a/content/child/v8_value_converter_impl_unittest.cc |
+++ b/content/child/v8_value_converter_impl_unittest.cc |
@@ -814,7 +814,7 @@ TEST_F(V8ValueConverterImplTest, DetectCycles) { |
// The first repetition should be trimmed and replaced by a null value. |
base::ListValue expected_list; |
- expected_list.Append(base::Value::CreateNullValue()); |
+ expected_list.Append(base::MakeUnique<base::Value>()); |
// The actual result. |
std::unique_ptr<base::Value> actual_list( |
@@ -835,7 +835,7 @@ TEST_F(V8ValueConverterImplTest, DetectCycles) { |
// The first repetition should be trimmed and replaced by a null value. |
base::DictionaryValue expected_dictionary; |
- expected_dictionary.Set(key, base::Value::CreateNullValue()); |
+ expected_dictionary.Set(key, base::MakeUnique<base::Value>()); |
// The actual result. |
std::unique_ptr<base::Value> actual_dictionary( |