| 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 fd4a20dae363ef15769006236ae1c361e1196e91..318c51a0042a87cdabc4b5582e38d0f5671600c4 100644
|
| --- a/chrome/test/chromedriver/chrome/chrome_impl.h
|
| +++ b/chrome/test/chromedriver/chrome/chrome_impl.h
|
| @@ -40,6 +40,8 @@ class ChromeImpl : public Chrome {
|
| Status ActivateWebView(const std::string& id) override;
|
| bool IsMobileEmulationEnabled() const override;
|
| bool HasTouchScreen() const override;
|
| + std::string GetPageLoadingStrategy() const override;
|
| + Status SetPageLoadingStrategy(std::string strategy) override;
|
| Status Quit() override;
|
|
|
| protected:
|
| @@ -55,6 +57,7 @@ class ChromeImpl : public Chrome {
|
| std::unique_ptr<DevToolsClient> devtools_websocket_client_;
|
|
|
| private:
|
| + std::string page_loading_strategy_;
|
| typedef std::list<linked_ptr<WebViewImpl> > WebViewList;
|
|
|
| // Web views in this list are in the same order as they are opened.
|
|
|