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

Unified Diff: chrome/browser/ui/passwords/password_manager_presenter_unittest.cc

Issue 1100223002: Update {virtual,override} to follow C++11 style in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 8 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/ui/passwords/password_manager_presenter_unittest.cc
diff --git a/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc b/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
index 338688193716dc7233e1751351e1d8988f96c05f..2c03ab8688a5304ff16933c12d0ee971ab57d1cb 100644
--- a/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
+++ b/chrome/browser/ui/passwords/password_manager_presenter_unittest.cc
@@ -22,10 +22,10 @@ class MockPasswordUIView : public PasswordUIView {
: profile_(profile), password_manager_presenter_(this) {
password_manager_presenter_.Initialize();
}
- virtual ~MockPasswordUIView() {}
- virtual Profile* GetProfile() override;
+ ~MockPasswordUIView() override {}
+ Profile* GetProfile() override;
#if !defined(OS_ANDROID)
- virtual gfx::NativeWindow GetNativeWindow() const override;
+ gfx::NativeWindow GetNativeWindow() const override;
#endif
MOCK_METHOD2(ShowPassword, void(size_t, const base::string16&));
MOCK_METHOD2(SetPasswordList,
« no previous file with comments | « chrome/browser/ui/network_profile_bubble.cc ('k') | chrome/browser/ui/pdf/chrome_pdf_web_contents_helper_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698