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

Unified Diff: chrome/test/chromedriver/stub_web_view.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/stub_web_view.cc
diff --git a/chrome/test/chromedriver/stub_web_view.cc b/chrome/test/chromedriver/stub_web_view.cc
index 131588b41d34fc8f37345716b55eda4f3fa10a43..ff242f1a38261240dbf3ea1b82db19a012cc0555 100644
--- a/chrome/test/chromedriver/stub_web_view.cc
+++ b/chrome/test/chromedriver/stub_web_view.cc
@@ -15,6 +15,10 @@ std::string StubWebView::GetId() {
return id_;
}
+Status StubWebView::EnsureAlive() {
+ return Status(kOk);
+}
+
Status StubWebView::Close() {
return Status(kOk);
}

Powered by Google App Engine
This is Rietveld 408576698