Home | History | Annotate | Download | only in chromedriver

Lines Matching refs:error_msg

255     std::string error_msg;
280 key_code, webdriver_modifiers, &unmodified_text, &error_msg))
281 return Status(kUnknownError, error_msg);
284 &error_msg))
285 return Status(kUnknownError, error_msg);
289 ConvertCharToKeyCode(key, &key_code, &necessary_modifiers, &error_msg);
290 if (!error_msg.empty())
291 return Status(kUnknownError, error_msg);
294 if (!ConvertKeyCodeToText(key_code, 0, &unmodified_text, &error_msg))
295 return Status(kUnknownError, error_msg);
297 key_code, all_modifiers, &modified_text, &error_msg))
298 return Status(kUnknownError, error_msg);