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

Unified Diff: chrome/browser/sync/sync_js_controller_unittest.cc

Issue 7647026: base: Add three helper functions to Values API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a typo Ceate -> Create 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
« no previous file with comments | « chrome/browser/sync/profile_sync_service_unittest.cc ('k') | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/browser/sync/profile_sync_service_unittest.cc ('k') | chrome/browser/sync/sync_ui_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698