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

Unified Diff: chrome/test/chromedriver/chrome/chrome_impl.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
Index: chrome/test/chromedriver/chrome/chrome_impl.h
diff --git a/chrome/test/chromedriver/chrome/chrome_impl.h b/chrome/test/chromedriver/chrome/chrome_impl.h
index 17efffd09b7e5b059cac179ff5c4dc896510280b..fb066dcfbdd3a402cc4e6422e9153d65e6fd3776 100644
--- a/chrome/test/chromedriver/chrome/chrome_impl.h
+++ b/chrome/test/chromedriver/chrome/chrome_impl.h
@@ -35,8 +35,10 @@ class ChromeImpl : public Chrome {
Status GetAsDesktop(ChromeDesktopImpl** desktop) override;
const BrowserInfo* GetBrowserInfo() const override;
bool HasCrashedWebView() override;
- Status GetWebViewIdForFirstTab(std::string* web_view_id) override;
- Status GetWebViewIds(std::list<std::string>* web_view_ids) override;
+ Status GetWebViewIdForFirstTab(std::string* web_view_id,
+ bool w3c_complaint) override;
+ Status GetWebViewIds(std::list<std::string>* web_view_ids,
+ bool w3c_compliant) override;
Status GetWebViewById(const std::string& id, WebView** web_view) override;
Status CloseWebView(const std::string& id) override;
Status ActivateWebView(const std::string& id) override;
@@ -61,7 +63,7 @@ class ChromeImpl : public Chrome {
private:
typedef std::list<linked_ptr<WebViewImpl> > WebViewList;
- void UpdateWebViews(const WebViewsInfo& views_info);
+ void UpdateWebViews(const WebViewsInfo& views_info, bool w3c_compliant);
// Web views in this list are in the same order as they are opened.
WebViewList web_views_;
« no previous file with comments | « chrome/test/chromedriver/chrome/chrome_desktop_impl.cc ('k') | chrome/test/chromedriver/chrome/chrome_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698