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

Unified Diff: chrome/test/base/extension_js_browser_test.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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/service/service_process_prefs.cc ('k') | chrome/test/base/javascript_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/extension_js_browser_test.cc
diff --git a/chrome/test/base/extension_js_browser_test.cc b/chrome/test/base/extension_js_browser_test.cc
index 48c9c9b4f61aa872d0793bcfe83e11474724d23f..403b48c7800f187a206088b3906b91c6e3b4217b 100644
--- a/chrome/test/base/extension_js_browser_test.cc
+++ b/chrome/test/base/extension_js_browser_test.cc
@@ -33,8 +33,8 @@ bool ExtensionJSBrowserTest::RunJavascriptTestF(bool is_async,
if (!load_waiter_->browser_context())
return false;
ConstValueVector args;
- args.push_back(new base::StringValue(test_fixture));
- args.push_back(new base::StringValue(test_name));
+ args.push_back(new base::Value(test_fixture));
+ args.push_back(new base::Value(test_name));
std::vector<base::string16> scripts;
if (!libs_loaded_) {
BuildJavascriptLibraries(&scripts);
« no previous file with comments | « chrome/service/service_process_prefs.cc ('k') | chrome/test/base/javascript_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698