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

Unified Diff: chrome/browser/ui/views/autofill/password_generation_popup_view_views.h

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (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/views/autofill/password_generation_popup_view_views.h
diff --git a/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h b/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
index df9c7bcd4ae2c611d8ed940a6a4bb0ad85992911..792d660b083fcfe0420d93f07739fc5f01a19e3b 100644
--- a/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
+++ b/chrome/browser/ui/views/autofill/password_generation_popup_view_views.h
@@ -28,12 +28,12 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
views::Widget* observing_widget);
// PasswordGenerationPopupView implementation
- virtual void Show() OVERRIDE;
- virtual void Hide() OVERRIDE;
- virtual gfx::Size GetPreferredSizeOfPasswordView() OVERRIDE;
- virtual void UpdateBoundsAndRedrawPopup() OVERRIDE;
- virtual void PasswordSelectionUpdated() OVERRIDE;
- virtual bool IsPointInPasswordBounds(const gfx::Point& point) OVERRIDE;
+ virtual void Show() override;
+ virtual void Hide() override;
+ virtual gfx::Size GetPreferredSizeOfPasswordView() override;
+ virtual void UpdateBoundsAndRedrawPopup() override;
+ virtual void PasswordSelectionUpdated() override;
+ virtual bool IsPointInPasswordBounds(const gfx::Point& point) override;
private:
// Helper class to do layout of the password portion of the popup.
@@ -45,12 +45,12 @@ class PasswordGenerationPopupViewViews : public AutofillPopupBaseView,
void CreatePasswordView();
// views:Views implementation.
- virtual void Layout() OVERRIDE;
- virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
+ virtual void Layout() override;
+ virtual void OnPaint(gfx::Canvas* canvas) override;
// views::StyledLabelListener implementation
virtual void StyledLabelLinkClicked(const gfx::Range& range,
- int event_flags) OVERRIDE;
+ int event_flags) override;
// Sub views. Used to change bounds when updating. Weak references.
PasswordBox* password_view_;

Powered by Google App Engine
This is Rietveld 408576698