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

Unified Diff: chrome/test/chromedriver/web_view_impl_unittest.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_unittest.cc
diff --git a/chrome/test/chromedriver/web_view_impl_unittest.cc b/chrome/test/chromedriver/web_view_impl_unittest.cc
index b6471daa06b4e81bb52bc85bbd2f1d7ffa61faeb..3314522ee81550a4f04ed085132e3945cc618e1e 100644
--- a/chrome/test/chromedriver/web_view_impl_unittest.cc
+++ b/chrome/test/chromedriver/web_view_impl_unittest.cc
@@ -29,6 +29,9 @@ class FakeDevToolsClient : public DevToolsClient {
}
// Overridden from DevToolsClient:
+ virtual Status EnsureConnected() OVERRIDE {
+ return Status(kOk);
+ }
virtual Status SendCommand(const std::string& method,
const base::DictionaryValue& params) OVERRIDE {
return SendCommandAndGetResult(method, params, NULL);

Powered by Google App Engine
This is Rietveld 408576698