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

Unified Diff: chrome/browser/profiles/profile_list_desktop.h

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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/profiles/profile_list_desktop.h
diff --git a/chrome/browser/profiles/profile_list_desktop.h b/chrome/browser/profiles/profile_list_desktop.h
index 38d4354f5386bfc2bd6fc3597183550b3cba01d1..ef9ca8e6c968b641d73e9c6c4c887e637a451ace 100644
--- a/chrome/browser/profiles/profile_list_desktop.h
+++ b/chrome/browser/profiles/profile_list_desktop.h
@@ -18,17 +18,17 @@ class ProfileInfoInterface;
class ProfileListDesktop : public ProfileList {
public:
explicit ProfileListDesktop(ProfileInfoInterface* profile_cache);
- virtual ~ProfileListDesktop();
+ ~ProfileListDesktop() override;
// ProfileList overrides:
- virtual size_t GetNumberOfItems() const override;
- virtual const AvatarMenu::Item& GetItemAt(size_t index) const override;
- virtual void RebuildMenu() override;
+ size_t GetNumberOfItems() const override;
+ const AvatarMenu::Item& GetItemAt(size_t index) const override;
+ void RebuildMenu() override;
// Returns the menu index of the profile at |index| in the ProfileInfoCache.
// The profile index must exist, and it may not be marked as omitted from the
// menu.
- virtual size_t MenuIndexFromProfileIndex(size_t index) override;
- virtual void ActiveProfilePathChanged(base::FilePath& path) override;
+ size_t MenuIndexFromProfileIndex(size_t index) override;
+ void ActiveProfilePathChanged(base::FilePath& path) override;
private:
void ClearMenu();

Powered by Google App Engine
This is Rietveld 408576698