Index: chrome/browser/sync/sync_js_controller_unittest.cc |
diff --git a/chrome/browser/sync/sync_js_controller_unittest.cc b/chrome/browser/sync/sync_js_controller_unittest.cc |
index 96bc6b3ddd9377c9fff42190b14d2eb6c6131e0b..3327ededff6f690a9289203c75d02dd50dd7ac91 100644 |
--- a/chrome/browser/sync/sync_js_controller_unittest.cc |
+++ b/chrome/browser/sync/sync_js_controller_unittest.cc |
@@ -37,7 +37,7 @@ TEST_F(SyncJsControllerTest, Messages) { |
SyncJsController sync_js_controller; |
ListValue arg_list1, arg_list2; |
- arg_list1.Append(Value::CreateBooleanValue(false)); |
+ arg_list1.Append(base::FalseValue()); |
arg_list2.Append(Value::CreateIntegerValue(5)); |
JsArgList args1(&arg_list1), args2(&arg_list2); |
@@ -63,7 +63,7 @@ TEST_F(SyncJsControllerTest, QueuedMessages) { |
SyncJsController sync_js_controller; |
ListValue arg_list1, arg_list2; |
- arg_list1.Append(Value::CreateBooleanValue(false)); |
+ arg_list1.Append(base::FalseValue()); |
arg_list2.Append(Value::CreateIntegerValue(5)); |
JsArgList args1(&arg_list1), args2(&arg_list2); |