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

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

Issue 2743013002: Add webdriver endpoint to send custom debugger commands (Closed)
Patch Set: Adding e2e test Created 3 years, 8 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/chrome/web_view_impl.h
diff --git a/chrome/test/chromedriver/chrome/web_view_impl.h b/chrome/test/chromedriver/chrome/web_view_impl.h
index cd0fed3de1ae59d60af5911adcbf2966dff5bf3c..070976d7b8e5040919d95d7082d4ffdab3b651c1 100644
--- a/chrome/test/chromedriver/chrome/web_view_impl.h
+++ b/chrome/test/chromedriver/chrome/web_view_impl.h
@@ -51,6 +51,11 @@ class WebViewImpl : public WebView {
Status HandleReceivedEvents() override;
Status GetUrl(std::string* url) override;
Status Load(const std::string& url, const Timeout* timeout) override;
+ Status SendCommand(std::string* cmd,
+ const base::DictionaryValue& params) override;
+ Status SendCommandAndGetResult(std::string* cmd,
+ const base::DictionaryValue& params,
+ std::unique_ptr<base::Value>* value) override;
Status Reload(const Timeout* timeout) override;
Status TraverseHistory(int delta, const Timeout* timeout) override;
Status EvaluateScript(const std::string& frame,

Powered by Google App Engine
This is Rietveld 408576698