Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4136)

Unified Diff: chrome/browser/sync/js/js_arg_list_unittest.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");
« no previous file with comments | « chrome/browser/sync/engine/syncapi_unittest.cc ('k') | chrome/browser/sync/js/js_sync_manager_observer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698