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

Unified Diff: chrome/test/base/javascript_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/test/base/extension_js_browser_test.cc ('k') | chrome/test/base/web_ui_browser_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/javascript_browser_test.cc
diff --git a/chrome/test/base/javascript_browser_test.cc b/chrome/test/base/javascript_browser_test.cc
index f0deef3723943d55ba426045c646b7a98d62cc95..3d762f2eaefe39ce6f01fd7cf73894df5b225f6f 100644
--- a/chrome/test/base/javascript_browser_test.cc
+++ b/chrome/test/base/javascript_browser_test.cc
@@ -108,7 +108,7 @@ base::string16 JavaScriptBrowserTest::BuildRunTestJSCall(
ConstValueVector arguments;
base::Value* is_async_arg = new base::Value(is_async);
arguments.push_back(is_async_arg);
- base::StringValue* function_name_arg = new base::StringValue(function_name);
+ base::Value* function_name_arg = new base::Value(function_name);
arguments.push_back(function_name_arg);
base::ListValue* baked_argument_list = new base::ListValue();
ConstValueVector::const_iterator arguments_iterator;
« no previous file with comments | « chrome/test/base/extension_js_browser_test.cc ('k') | chrome/test/base/web_ui_browser_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698