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

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

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 | « no previous file | chrome/test/chromedriver/chrome/chrome_desktop_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/chrome.h
diff --git a/chrome/test/chromedriver/chrome/chrome.h b/chrome/test/chromedriver/chrome/chrome.h
index 14251c7c160e08a133dd881027beb79c8fb4d417..92c79568f6017189db6489470179e5feba42b2f4 100644
--- a/chrome/test/chromedriver/chrome/chrome.h
+++ b/chrome/test/chromedriver/chrome/chrome.h
@@ -24,12 +24,14 @@ class Chrome {
virtual bool HasCrashedWebView() = 0;
// Return the id of the first WebView that is a page.
- virtual Status GetWebViewIdForFirstTab(std::string* web_view_id) = 0;
+ virtual Status GetWebViewIdForFirstTab(std::string* web_view_id,
+ bool w3c_compliant) = 0;
// Return ids of opened WebViews. The list is not guaranteed to be in the same
// order as those WebViews are opened, if two or more new windows are opened
// between two calls of this method.
- virtual Status GetWebViewIds(std::list<std::string>* web_view_ids) = 0;
+ virtual Status GetWebViewIds(std::list<std::string>* web_view_ids,
+ bool w3c_compliant) = 0;
// Return the WebView for the given id.
virtual Status GetWebViewById(const std::string& id, WebView** web_view) = 0;
« no previous file with comments | « no previous file | chrome/test/chromedriver/chrome/chrome_desktop_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698