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 ee8a1bd5d6e7ed68a9462db3639ab4aa5a20a401..7a2d57a97f96c20960171cc361069d668a551cc1 100644 |
--- a/chrome/test/chromedriver/command_executor_impl.cc |
+++ b/chrome/test/chromedriver/command_executor_impl.cc |
@@ -45,6 +45,8 @@ void CommandExecutorImpl::Init() { |
base::Bind(&ExecuteGet))); |
command_map_.Set("executeScript", base::Bind(execute_session_command, |
base::Bind(&ExecuteExecuteScript))); |
+ command_map_.Set("getTitle", base::Bind(execute_session_command, |
+ base::Bind(&ExecuteGetTitle))); |
Command quit_command = base::Bind(execute_session_command, |
base::Bind(&ExecuteQuit, &session_map_)); |
command_map_.Set("quit", quit_command); |