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..c047c5e2b2633ef2e2e7b8561a4f3b9aad6e39ab 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] = |