Index: chrome/browser/sync/js/js_arg_list_unittest.cc |
diff --git a/chrome/browser/sync/js/js_arg_list_unittest.cc b/chrome/browser/sync/js/js_arg_list_unittest.cc |
index 65469f0e41c990e6e6313b938c6591f255996ea0..04158bd7be7237dcb6eba73ecd43bf7c9fd5af3f 100644 |
--- a/chrome/browser/sync/js/js_arg_list_unittest.cc |
+++ b/chrome/browser/sync/js/js_arg_list_unittest.cc |
@@ -20,8 +20,8 @@ TEST_F(JsArgListTest, EmptyList) { |
TEST_F(JsArgListTest, FromList) { |
scoped_ptr<ListValue> list(new ListValue()); |
- list->Append(Value::CreateBooleanValue(false)); |
- list->Append(Value::CreateIntegerValue(5)); |
+ list->Append(base::FalseValue()); |
+ list->Append(base::NumberValue::New(5)); |
DictionaryValue* dict = new DictionaryValue(); |
list->Append(dict); |
dict->SetString("foo", "bar"); |