Index: chrome/test/chromedriver/chrome/stub_chrome.h |
diff --git a/chrome/test/chromedriver/chrome/stub_chrome.h b/chrome/test/chromedriver/chrome/stub_chrome.h |
index 130c1a58e1dd1318885dd467014aa3807b6d27d0..c0b1cb97384a41383e75bac9bd933b0f6e22d561 100644 |
--- a/chrome/test/chromedriver/chrome/stub_chrome.h |
+++ b/chrome/test/chromedriver/chrome/stub_chrome.h |
@@ -18,20 +18,19 @@ class WebView; |
class StubChrome : public Chrome { |
public: |
StubChrome(); |
- virtual ~StubChrome(); |
+ ~StubChrome() override; |
// Overridden from Chrome: |
- virtual ChromeDesktopImpl* GetAsDesktop() override; |
- virtual const BrowserInfo* GetBrowserInfo() override; |
- virtual bool HasCrashedWebView() override; |
- virtual Status GetWebViewIds(std::list<std::string>* web_view_ids) override; |
- virtual Status GetWebViewById(const std::string& id, |
- WebView** web_view) override; |
- virtual Status CloseWebView(const std::string& id) override; |
- virtual Status ActivateWebView(const std::string& id) override; |
- virtual std::string GetOperatingSystemName() override; |
- virtual bool IsMobileEmulationEnabled() const override; |
- virtual Status Quit() override; |
+ ChromeDesktopImpl* GetAsDesktop() override; |
+ const BrowserInfo* GetBrowserInfo() override; |
+ bool HasCrashedWebView() override; |
+ Status GetWebViewIds(std::list<std::string>* web_view_ids) 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; |
+ std::string GetOperatingSystemName() override; |
+ bool IsMobileEmulationEnabled() const override; |
+ Status Quit() override; |
private: |
BrowserInfo browser_info_; |