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

Unified Diff: chrome/test/chromedriver/chrome/stub_chrome.h

Issue 637933002: Replace FINAL and OVERRIDE with their C++11 counterparts in chrome/test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months 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/stub_chrome.h
diff --git a/chrome/test/chromedriver/chrome/stub_chrome.h b/chrome/test/chromedriver/chrome/stub_chrome.h
index f818523101042c0b69c0d94b799aa2afe442670e..130c1a58e1dd1318885dd467014aa3807b6d27d0 100644
--- a/chrome/test/chromedriver/chrome/stub_chrome.h
+++ b/chrome/test/chromedriver/chrome/stub_chrome.h
@@ -21,17 +21,17 @@ class StubChrome : public Chrome {
virtual ~StubChrome();
// 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 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;
+ 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;
private:
BrowserInfo browser_info_;
« no previous file with comments | « chrome/test/chromedriver/chrome/navigation_tracker_unittest.cc ('k') | chrome/test/chromedriver/chrome/stub_devtools_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698