Lines Matching refs:Status
13 #include "chrome/test/chromedriver/chrome/status.h"
56 Status Session::GetTargetWindow(WebView** web_view) {
58 return Status(kNoSuchWindow, "no chrome started in this session");
60 Status status = chrome->GetWebViewById(window, web_view);
61 if (status.IsError())
62 status = Status(kNoSuchWindow, "target window already closed", status);
63 return status;