| Index: chrome/test/webdriver/commands/url_command.cc
|
| diff --git a/chrome/test/webdriver/commands/url_command.cc b/chrome/test/webdriver/commands/url_command.cc
|
| index 7a495d9fb6d3a0f13a765a30e4e3bf655575e515..aae174fa4eb268adb41312ece1f30046a77049d0 100644
|
| --- a/chrome/test/webdriver/commands/url_command.cc
|
| +++ b/chrome/test/webdriver/commands/url_command.cc
|
| @@ -33,7 +33,7 @@ void URLCommand::ExecuteGet(Response* const response) {
|
| response->SetError(error);
|
| return;
|
| }
|
| - response->SetValue(new StringValue(url));
|
| + response->SetValue(base::StringValue::New(url));
|
| }
|
|
|
| void URLCommand::ExecutePost(Response* const response) {
|
| @@ -49,7 +49,7 @@ void URLCommand::ExecutePost(Response* const response) {
|
| response->SetError(error);
|
| return;
|
| }
|
| - response->SetValue(new StringValue(url));
|
| + response->SetValue(base::StringValue::New(url));
|
| }
|
|
|
|
|
|
|