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

Unified Diff: chrome/browser/password_manager/chrome_password_manager_client_unittest.cc

Issue 659563005: Standardize usage of virtual/override/final in chrome/browser/password_manager (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/browser/password_manager/chrome_password_manager_client_unittest.cc
diff --git a/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc b/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
index a07ad6dec0d2cfc3dd04ef53f9081572ee3f579c..57438e5651ad9680a2dbb332466c4a30e38321fc 100644
--- a/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
+++ b/chrome/browser/password_manager/chrome_password_manager_client_unittest.cc
@@ -40,11 +40,10 @@ class TestChromePasswordManagerClient : public ChromePasswordManagerClient {
explicit TestChromePasswordManagerClient(content::WebContents* web_contents)
: ChromePasswordManagerClient(web_contents, NULL),
is_sync_account_credential_(false) {}
- virtual ~TestChromePasswordManagerClient() {}
+ ~TestChromePasswordManagerClient() override {}
- virtual bool IsSyncAccountCredential(
- const std::string& username,
- const std::string& origin) const override {
+ bool IsSyncAccountCredential(const std::string& username,
+ const std::string& origin) const override {
return is_sync_account_credential_;
}

Powered by Google App Engine
This is Rietveld 408576698