| Index: chrome/test/webdriver/commands/command.h
|
| diff --git a/chrome/test/webdriver/commands/command.h b/chrome/test/webdriver/commands/command.h
|
| index 55f214b4b63909484020cea84360070459ad0568..672b2c055424203824ec447ce6f623345c762129 100644
|
| --- a/chrome/test/webdriver/commands/command.h
|
| +++ b/chrome/test/webdriver/commands/command.h
|
| @@ -49,9 +49,7 @@ class Command {
|
| // Returns the path variable encoded at the |i|th index (0-based) in the
|
| // request URL for this command. If the index is out of bounds, an empty
|
| // string will be returned.
|
| - inline std::string GetPathVariable(const size_t i) const {
|
| - return i < path_segments_.size() ? path_segments_.at(i) : "";
|
| - }
|
| + std::string GetPathVariable(const size_t i) const;
|
|
|
| // Returns whether the command has a parameter with the given |key|.
|
| bool HasParameter(const std::string& key) const;
|
|
|