| Index: chrome/test/chromedriver/commands.cc
|
| diff --git a/chrome/test/chromedriver/commands.cc b/chrome/test/chromedriver/commands.cc
|
| index 443cd1b8c4f8d669eae92eecabeec01afb300470..06184a349a824b28084f60cd664765845a561592 100644
|
| --- a/chrome/test/chromedriver/commands.cc
|
| +++ b/chrome/test/chromedriver/commands.cc
|
| @@ -137,6 +137,9 @@ Status ExecuteNewSession(
|
| Status(kUnknownError, "unable to discover open window in chrome");
|
| }
|
| WebView* default_web_view = web_views.front();
|
| + status = default_web_view->EnsureAlive();
|
| + if (status.IsError())
|
| + return status;
|
|
|
| std::string chrome_version;
|
| status = CheckChromeVersion(default_web_view, &chrome_version);
|
|
|