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

Unified Diff: chrome/browser/ui/webui/sync_internals_ui_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/ui/webui/print_preview_handler.cc ('k') | chrome/common/common_param_traits_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/sync_internals_ui_unittest.cc
diff --git a/chrome/browser/ui/webui/sync_internals_ui_unittest.cc b/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
index eefe4fb52c41bfc37486c3fbaa5c782425358495..564f6bb78f320bbe847fca2ca3905c55eba62ef3 100644
--- a/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
+++ b/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
@@ -108,7 +108,7 @@ TEST_F(SyncInternalsUITestWithService, HandleJsReply) {
ListValue args;
args.Append(Value::CreateIntegerValue(5));
- args.Append(Value::CreateBooleanValue(true));
+ args.Append(base::TrueValue());
test_sync_internals_ui_->HandleJsReply("testMessage", JsArgList(&args));
}
@@ -170,7 +170,7 @@ TEST_F(SyncInternalsUITestWithoutService, HandleJsReply) {
ListValue args;
args.Append(Value::CreateIntegerValue(5));
- args.Append(Value::CreateBooleanValue(true));
+ args.Append(base::TrueValue());
test_sync_internals_ui_->HandleJsReply(
"testMessage", JsArgList(&args));
}
« no previous file with comments | « chrome/browser/ui/webui/print_preview_handler.cc ('k') | chrome/common/common_param_traits_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698