| 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
|
|
|
|
|