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

Unified Diff: chrome/test/webdriver/commands/session_with_id.cc

Issue 7649006: more changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix another typo 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
Index: chrome/test/webdriver/commands/session_with_id.cc
diff --git a/chrome/test/webdriver/commands/session_with_id.cc b/chrome/test/webdriver/commands/session_with_id.cc
index 1c5788221657ef027640e070478f99eb815aab04..5b04600074423dd6652e4c25e4d27220514f8346 100644
--- a/chrome/test/webdriver/commands/session_with_id.cc
+++ b/chrome/test/webdriver/commands/session_with_id.cc
@@ -57,10 +57,10 @@ void SessionWithID::ExecuteGet(Response* const response) {
// Custom non-standard session info.
temp_value->SetWithoutPathExpansion(
"chrome.chromedriverVersion",
- Value::CreateStringValue(chrome::kChromeVersion));
+ base::StringValue::New(chrome::kChromeVersion));
temp_value->SetWithoutPathExpansion(
"chrome.nativeEvents",
- Value::CreateBooleanValue(session_->options().use_native_events));
+ base::BooleanValue::New(session_->options().use_native_events));
response->SetValue(temp_value);
}
« no previous file with comments | « chrome/test/webdriver/commands/screenshot_command.cc ('k') | chrome/test/webdriver/commands/set_timeout_commands_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698