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

Unified Diff: chrome/test/chromedriver/devtools_client.h

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/devtools_client.h
diff --git a/chrome/test/chromedriver/devtools_client.h b/chrome/test/chromedriver/devtools_client.h
index cb32ceb23dc3990a55e9e08d48819e2484f0b33f..354f099b13457197bfae9dd11c5763a1aaa6c53c 100644
--- a/chrome/test/chromedriver/devtools_client.h
+++ b/chrome/test/chromedriver/devtools_client.h
@@ -24,6 +24,9 @@ class DevToolsClient {
virtual ~DevToolsClient() {}
+ // Ensure that DevToolsClient is connected to the DevTools.
+ virtual Status EnsureConnected() = 0;
+
virtual Status SendCommand(const std::string& method,
const base::DictionaryValue& params) = 0;
virtual Status SendCommandAndGetResult(

Powered by Google App Engine
This is Rietveld 408576698