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); |
} |