| Index: chrome/test/chromedriver/element_commands.cc
|
| diff --git a/chrome/test/chromedriver/element_commands.cc b/chrome/test/chromedriver/element_commands.cc
|
| index 9061884901a56fd2dfd39310a8e92f81d6c97b7b..a39b7333517e1704f0739aa7444323f82bd5bedb 100644
|
| --- a/chrome/test/chromedriver/element_commands.cc
|
| +++ b/chrome/test/chromedriver/element_commands.cc
|
| @@ -80,11 +80,13 @@ Status SendKeysToElement(
|
|
|
| } // namespace
|
|
|
| -Status ExecuteElementCommand(const ElementCommand& command,
|
| - Session* session,
|
| - WebView* web_view,
|
| - const base::DictionaryValue& params,
|
| - std::unique_ptr<base::Value>* value) {
|
| +Status ExecuteElementCommand(
|
| + const ElementCommand& command,
|
| + Session* session,
|
| + WebView* web_view,
|
| + const base::DictionaryValue& params,
|
| + std::unique_ptr<base::Value>* value,
|
| + Timeout* timeout) {
|
| std::string id;
|
| if (params.GetString("id", &id) || params.GetString("element", &id))
|
| return command.Run(session, web_view, id, params, value);
|
|
|