Home | History | Annotate | Download | only in chromedriver

Lines Matching full:chrome

5 #include "chrome/test/chromedriver/session.h"
10 #include "chrome/test/chromedriver/chrome/chrome.h"
11 #include "chrome/test/chromedriver/chrome/status.h"
12 #include "chrome/test/chromedriver/chrome/version.h"
13 #include "chrome/test/chromedriver/chrome/web_view.h"
14 #include "chrome/test/chromedriver/logging.h"
36 Session::Session(const std::string& id, scoped_ptr<Chrome> chrome)
40 chrome(chrome.Pass()),
52 if (!chrome)
53 return Status(kNoSuchWindow, "no chrome started in this session");
55 Status status = chrome->GetWebViewById(window, web_view);
81 caps->SetString("browserName", "chrome");
82 caps->SetString("version", chrome->GetVersion());
83 caps->SetString("chrome.chromedriverVersion", kChromeDriverVersion);
84 caps->SetString("platform", chrome->GetOperatingSystemName());