| Index: chrome/test/webdriver/commands/command.cc
|
| diff --git a/chrome/test/webdriver/commands/command.cc b/chrome/test/webdriver/commands/command.cc
|
| index 1471e0a9cba650377563bd829f345103c7beb82c..dfde908e15eb2dca0b1a8744855c7da5930cc450 100644
|
| --- a/chrome/test/webdriver/commands/command.cc
|
| +++ b/chrome/test/webdriver/commands/command.cc
|
| @@ -32,7 +32,7 @@ bool Command::Init(Response* const response) {
|
| void Command::Finish(Response* const response) {}
|
|
|
| std::string Command::GetPathVariable(const size_t i) const {
|
| - return i < path_segments_.size() ? path_segments_.at(i) : "";
|
| + return i < path_segments_.size() ? path_segments_.at(i) : std::string();
|
| }
|
|
|
| bool Command::HasParameter(const std::string& key) const {
|
|
|