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

Unified Diff: chrome/browser/ui/autofill/password_generation_popup_controller_impl.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/autofill/password_generation_popup_controller_impl.h
diff --git a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
index 3630a7fd6d439217aea21c3286e51646e35b725b..238d362ce31f1966c07fb9858752e064e54ae0ce 100644
--- a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
+++ b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
@@ -55,7 +55,7 @@ class PasswordGenerationPopupControllerImpl
PasswordGenerationPopupObserver* observer,
content::WebContents* web_contents,
gfx::NativeView container_view);
- virtual ~PasswordGenerationPopupControllerImpl();
+ ~PasswordGenerationPopupControllerImpl() override;
// Create a PasswordGenerationPopupView if one doesn't already exist.
// If |display_password| is true, a generated password is shown that can be
@@ -86,24 +86,24 @@ class PasswordGenerationPopupControllerImpl
private:
// PasswordGenerationPopupController implementation:
- virtual void Hide() override;
- virtual void ViewDestroyed() override;
- virtual void SetSelectionAtPoint(const gfx::Point& point) override;
- virtual bool AcceptSelectedLine() override;
- virtual void SelectionCleared() override;
- virtual void PasswordAccepted() override;
- virtual void OnSavedPasswordsLinkClicked() override;
- virtual int GetMinimumWidth() override;
- virtual gfx::NativeView container_view() override;
- virtual const gfx::Rect& popup_bounds() const override;
- virtual const gfx::RectF& element_bounds() const override;
- virtual bool IsRTL() const override;
- virtual bool display_password() const override;
- virtual bool password_selected() const override;
- virtual base::string16 password() const override;
- virtual base::string16 SuggestedText() override;
- virtual const base::string16& HelpText() override;
- virtual const gfx::Range& HelpTextLinkRange() override;
+ void Hide() override;
+ void ViewDestroyed() override;
+ void SetSelectionAtPoint(const gfx::Point& point) override;
+ bool AcceptSelectedLine() override;
+ void SelectionCleared() override;
+ void PasswordAccepted() override;
+ void OnSavedPasswordsLinkClicked() override;
+ int GetMinimumWidth() override;
+ gfx::NativeView container_view() override;
+ const gfx::Rect& popup_bounds() const override;
+ const gfx::RectF& element_bounds() const override;
+ bool IsRTL() const override;
+ bool display_password() const override;
+ bool password_selected() const override;
+ base::string16 password() const override;
+ base::string16 SuggestedText() override;
+ const base::string16& HelpText() override;
+ const gfx::Range& HelpTextLinkRange() override;
base::WeakPtr<PasswordGenerationPopupControllerImpl> GetWeakPtr();

Powered by Google App Engine
This is Rietveld 408576698