Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: chrome/test/chromedriver/web_view_impl.cc

Issue 12321057: [chromedriver] Implement reconnection to DevTools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nits. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/chromedriver/web_view_impl.cc
diff --git a/chrome/test/chromedriver/web_view_impl.cc b/chrome/test/chromedriver/web_view_impl.cc
index e31de46908e618c579aa90d86e2a3c09afab79b9..c1aad7c77a4ea484e9111d1944cddc048e66f161 100644
--- a/chrome/test/chromedriver/web_view_impl.cc
+++ b/chrome/test/chromedriver/web_view_impl.cc
@@ -103,6 +103,10 @@ std::string WebViewImpl::GetId() {
return id_;
}
+Status WebViewImpl::EnsureAlive() {
+ return client_->EnsureConnected();
+}
+
Status WebViewImpl::Close() {
Status status = closer_func_.Run();
if (status.IsOk())

Powered by Google App Engine
This is Rietveld 408576698