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

Unified Diff: chrome/test/chromedriver/chrome/stub_web_view.cc

Issue 2743013002: Add webdriver endpoint to send custom debugger commands (Closed)
Patch Set: Adding stub, quick code reorg 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
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/stub_web_view.cc
diff --git a/chrome/test/chromedriver/chrome/stub_web_view.cc b/chrome/test/chromedriver/chrome/stub_web_view.cc
index 43c7b471272c3467aeb776e5132974851417e4c2..6df576da45841bfafdfb5c14a9458a784248094f 100644
--- a/chrome/test/chromedriver/chrome/stub_web_view.cc
+++ b/chrome/test/chromedriver/chrome/stub_web_view.cc
@@ -40,6 +40,18 @@ Status StubWebView::Reload(const Timeout* timeout) {
return Status(kOk);
}
+Status StubWebView::SendCommand(const std::string& cmd,
+ const base::DictionaryValue& params) {
+ return Status(kOk);
+}
+
+Status StubWebView::SendCommandAndGetResult(
+ const std::string& cmd,
+ const base::DictionaryValue& params,
+ std::unique_ptr<base::Value>* value) {
+ return Status(kOk);
+}
+
Status StubWebView::TraverseHistory(int delta, const Timeout* timeout) {
return Status(kOk);
}
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_web_view.h ('k') | chrome/test/chromedriver/chrome/web_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698