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

Unified Diff: chrome/test/chromedriver/chrome/web_view_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
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_chrome.cc ('k') | chrome/test/chromedriver/chrome/web_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 faa6060789dce4f35c47dc7039da654aab2f6bff..757ec1d42fc63a25e6a5fe14c62e13eac4843c9b 100644
--- a/chrome/test/chromedriver/chrome/web_view_impl.h
+++ b/chrome/test/chromedriver/chrome/web_view_impl.h
@@ -39,9 +39,7 @@ class Status;
class WebViewImpl : public WebView {
public:
WebViewImpl(const std::string& id,
- const BrowserInfo* browser_info,
- std::unique_ptr<DevToolsClient> client);
- WebViewImpl(const std::string& id,
+ const bool w3c_compliant,
const BrowserInfo* browser_info,
std::unique_ptr<DevToolsClient> client,
const DeviceMetrics* device_metrics,
@@ -132,6 +130,7 @@ class WebViewImpl : public WebView {
Status StopProfileInternal();
std::string id_;
+ bool w3c_compliant_;
const BrowserInfo* browser_info_;
std::unique_ptr<DomTracker> dom_tracker_;
std::unique_ptr<FrameTracker> frame_tracker_;
@@ -174,7 +173,8 @@ Status GetNodeIdFromFunction(DevToolsClient* client,
const std::string& function,
const base::ListValue& args,
bool* found_node,
- int* node_id);
+ int* node_id,
+ bool w3c_compliant);
} // namespace internal
« no previous file with comments | « chrome/test/chromedriver/chrome/stub_chrome.cc ('k') | chrome/test/chromedriver/chrome/web_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698