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

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

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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/chromedriver/alert_commands.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 880bd757b536f07cce291e749d609e41999b827d..f0deef3723943d55ba426045c646b7a98d62cc95 100644
--- a/chrome/test/base/javascript_browser_test.cc
+++ b/chrome/test/base/javascript_browser_test.cc
@@ -106,7 +106,7 @@ base::string16 JavaScriptBrowserTest::BuildRunTestJSCall(
const std::string& function_name,
const ConstValueVector& test_func_args) {
ConstValueVector arguments;
- base::FundamentalValue* is_async_arg = new base::FundamentalValue(is_async);
+ 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);
arguments.push_back(function_name_arg);
« no previous file with comments | « chrome/service/service_process_prefs.cc ('k') | chrome/test/chromedriver/alert_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698