Home | History | Annotate | Download | only in automation

Lines Matching refs:handler_map

2051   std::map<std::string, JsonHandler> handler_map;
2052 handler_map["WaitForAllTabsToStopLoading"] =
2054 handler_map["GetIndicesFromTab"] =
2056 handler_map["NavigateToURL"] =
2058 handler_map["ExecuteJavascript"] =
2060 handler_map["GoForward"] =
2062 handler_map["GoBack"] =
2064 handler_map["Reload"] =
2066 handler_map["GetTabURL"] =
2068 handler_map["GetTabTitle"] =
2070 handler_map["CaptureEntirePage"] =
2072 handler_map["GetCookies"] =
2074 handler_map["DeleteCookie"] =
2076 handler_map["SetCookie"] =
2078 handler_map["GetTabIds"] =
2080 handler_map["IsTabIdValid"] =
2082 handler_map["CloseTab"] =
2084 handler_map["WebkitMouseMove"] =
2086 handler_map["WebkitMouseClick"] =
2088 handler_map["WebkitMouseDrag"] =
2090 handler_map["SendWebkitKeyEvent"] =
2092 handler_map["SendOSLevelKeyEventToTab"] =
2094 handler_map["ActivateTab"] =
2096 handler_map["UpdateExtensionsNow"] =
2098 handler_map["GetChromeDriverAutomationVersion"] =
2101 handler_map["GetLoginInfo"] = &TestingAutomationProvider::GetLoginInfo;
2102 handler_map["LoginAsGuest"] = &TestingAutomationProvider::LoginAsGuest;
2103 handler_map["Login"] = &TestingAutomationProvider::Login;
2105 handler_map["LockScreen"] = &TestingAutomationProvider::LockScreen;
2106 handler_map["UnlockScreen"] = &TestingAutomationProvider::UnlockScreen;
2107 handler_map["SignoutInScreenLocker"] =
2110 handler_map["GetBatteryInfo"] = &TestingAutomationProvider::GetBatteryInfo;
2112 handler_map["GetNetworkInfo"] = &TestingAutomationProvider::GetNetworkInfo;
2113 handler_map["NetworkScan"] = &TestingAutomationProvider::NetworkScan;
2114 handler_map["GetProxySettings"] =
2116 handler_map["SetProxySettings"] =
2118 handler_map["ConnectToWifiNetwork"] =
2120 handler_map["ConnectToHiddenWifiNetwork"] =
2122 handler_map["DisconnectFromWifiNetwork"] =
2125 handler_map["GetUpdateInfo"] = &TestingAutomationProvider::GetUpdateInfo;
2126 handler_map["UpdateCheck"] = &TestingAutomationProvider::UpdateCheck;
2127 handler_map["SetReleaseTrack"] = &TestingAutomationProvider::SetReleaseTrack;
2277 if (handler_map.find(std::string(command)) != handler_map.end()) {
2278 (this->*handler_map[command])(dict_value, reply_message);
2291 handler_map.begin(); it != handler_map.end(); ++it) {