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

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

Issue 2295443003: [chromedriver] Added option to make element references W3C compliant. (Closed)
Patch Set: fix errors introduced during previous rebase Created 4 years, 1 month 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_chrome.h ('k') | chrome/test/chromedriver/chrome/web_view_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/stub_chrome.cc
diff --git a/chrome/test/chromedriver/chrome/stub_chrome.cc b/chrome/test/chromedriver/chrome/stub_chrome.cc
index cdf641f8f8fb2e40efd6a75f5c5df5813abb1c34..6dd163f484f250cf499374a902ef1dd0cfb1b092 100644
--- a/chrome/test/chromedriver/chrome/stub_chrome.cc
+++ b/chrome/test/chromedriver/chrome/stub_chrome.cc
@@ -22,11 +22,13 @@ bool StubChrome::HasCrashedWebView() {
return false;
}
-Status StubChrome::GetWebViewIdForFirstTab(std::string* web_view_id) {
+Status StubChrome::GetWebViewIdForFirstTab(std::string* web_view_id,
+ bool w3c_compliant) {
return Status(kOk);
}
-Status StubChrome::GetWebViewIds(std::list<std::string>* web_view_ids) {
+Status StubChrome::GetWebViewIds(std::list<std::string>* web_view_ids,
+ bool w3c_compliant) {
return Status(kOk);
}
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_chrome.h ('k') | chrome/test/chromedriver/chrome/web_view_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698