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

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
« no previous file with comments | « chrome/test/chromedriver/web_view_impl.cc ('k') | chrome/test/chromedriver/window_commands.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..66e3d7f762cd2532b180d49d6b0c87e932809b3e 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 ConnectIfNecessary() OVERRIDE {
+ return Status(kOk);
+ }
virtual Status SendCommand(const std::string& method,
const base::DictionaryValue& params) OVERRIDE {
return SendCommandAndGetResult(method, params, NULL);
« no previous file with comments | « chrome/test/chromedriver/web_view_impl.cc ('k') | chrome/test/chromedriver/window_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698