Index: chrome/test/chromedriver/command_executor_impl.cc |
diff --git a/chrome/test/chromedriver/command_executor_impl.cc b/chrome/test/chromedriver/command_executor_impl.cc |
index bf7927a6c405eeeac4c2a16020530661cae597d7..dc3ade945aaf733cadc9c4d19a171e12dea5922f 100644 |
--- a/chrome/test/chromedriver/command_executor_impl.cc |
+++ b/chrome/test/chromedriver/command_executor_impl.cc |
@@ -102,6 +102,8 @@ void CommandExecutorImpl::Init() { |
window_command_map[CommandNames::kGet] = base::Bind(&ExecuteGet); |
window_command_map[CommandNames::kExecuteScript] = |
base::Bind(&ExecuteExecuteScript); |
+ window_command_map[CommandNames::kExecuteAsyncScript] = |
+ base::Bind(&ExecuteExecuteAsyncScript); |
window_command_map[CommandNames::kSwitchToFrame] = |
base::Bind(&ExecuteSwitchToFrame); |
window_command_map[CommandNames::kGetTitle] = |
@@ -192,6 +194,8 @@ void CommandExecutorImpl::Init() { |
base::Bind(&ExecuteSwitchToWindow); |
session_command_map[CommandNames::kSetTimeout] = |
base::Bind(&ExecuteSetTimeout); |
+ session_command_map[CommandNames::kSetScriptTimeout] = |
+ base::Bind(&ExecuteSetScriptTimeout); |
session_command_map[CommandNames::kGetAlert] = |
base::Bind(&ExecuteGetAlert); |
session_command_map[CommandNames::kGetAlertText] = |