Lines Matching refs:Session
5 #include "chrome/test/chromedriver/session.h"
20 base::LazyInstance<base::ThreadLocalPointer<Session> >
32 const base::TimeDelta Session::kDefaultPageLoadTimeout =
35 Session::Session(const std::string& id)
44 Session::Session(const std::string& id, scoped_ptr<Chrome> chrome)
54 Session::~Session() {}
56 Status Session::GetTargetWindow(WebView** web_view) {
58 return Status(kNoSuchWindow, "no chrome started in this session");
66 void Session::SwitchToTopFrame() {
70 void Session::SwitchToSubFrame(const std::string& frame_id,
78 std::string Session::GetCurrentFrameId() const {
84 std::vector<WebDriverLog*> Session::GetAllLogs() const {
96 Session* GetThreadLocalSession() {
100 void SetThreadLocalSession(scoped_ptr<Session> session) {
101 lazy_tls_session.Pointer()->Set(session.release());