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

Unified Diff: chrome/test/chromedriver/commands_unittest.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/chromedriver/commands.cc ('k') | chrome/test/chromedriver/element_commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/commands_unittest.cc
diff --git a/chrome/test/chromedriver/commands_unittest.cc b/chrome/test/chromedriver/commands_unittest.cc
index af766822c8fc4fc1524d1336b51862708d0f39dd..8f61845c5739971de43bb12af76ed0416ffa675b 100644
--- a/chrome/test/chromedriver/commands_unittest.cc
+++ b/chrome/test/chromedriver/commands_unittest.cc
@@ -71,8 +71,8 @@ void ExecuteStubGetSession(int* count,
std::unique_ptr<base::DictionaryValue> capabilities(
new base::DictionaryValue());
- capabilities->Set("capability1", new base::StringValue("test1"));
- capabilities->Set("capability2", new base::StringValue("test2"));
+ capabilities->Set("capability1", new base::Value("test1"));
+ capabilities->Set("capability2", new base::Value("test2"));
callback.Run(Status(kOk), std::move(capabilities), session_id, false);
}
« no previous file with comments | « chrome/test/chromedriver/commands.cc ('k') | chrome/test/chromedriver/element_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698