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

Unified Diff: chrome/test/chromedriver/session_unittest.cc

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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/session_unittest.cc
diff --git a/chrome/test/chromedriver/session_unittest.cc b/chrome/test/chromedriver/session_unittest.cc
index 14485f50d644cc35ae7c2f13a160b52c0fa2ccb5..83230612a46cce4c48be054188820cd1e6ab2569 100644
--- a/chrome/test/chromedriver/session_unittest.cc
+++ b/chrome/test/chromedriver/session_unittest.cc
@@ -16,10 +16,9 @@ namespace {
class MockChrome : public StubChrome {
public:
MockChrome() : web_view_("1") {}
- virtual ~MockChrome() {}
+ ~MockChrome() override {}
- virtual Status GetWebViewById(const std::string& id,
- WebView** web_view) override {
+ Status GetWebViewById(const std::string& id, WebView** web_view) override {
if (id == web_view_.GetId()) {
*web_view = &web_view_;
return Status(kOk);
« no previous file with comments | « chrome/test/chromedriver/session_commands_unittest.cc ('k') | chrome/test/data/webui/chrome_send_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698