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

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

Issue 686543002: Standardize usage of virtual/override/final specifiers. (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/autofill_popup_view_views.h
diff --git a/chrome/browser/ui/views/autofill/autofill_popup_view_views.h b/chrome/browser/ui/views/autofill/autofill_popup_view_views.h
index f9c910c8388a078a9471176265ed527ac189ce29..cd2d95e35dd307ef4860cdbcd5b481b7962013a6 100644
--- a/chrome/browser/ui/views/autofill/autofill_popup_view_views.h
+++ b/chrome/browser/ui/views/autofill/autofill_popup_view_views.h
@@ -23,16 +23,16 @@ class AutofillPopupViewViews : public AutofillPopupBaseView,
views::Widget* observing_widget);
private:
- virtual ~AutofillPopupViewViews();
+ ~AutofillPopupViewViews() override;
// AutofillPopupView implementation.
- virtual void Show() override;
- virtual void Hide() override;
- virtual void InvalidateRow(size_t row) override;
- virtual void UpdateBoundsAndRedrawPopup() override;
+ void Show() override;
+ void Hide() override;
+ void InvalidateRow(size_t row) override;
+ void UpdateBoundsAndRedrawPopup() override;
// views::Views implementation
- virtual void OnPaint(gfx::Canvas* canvas) override;
+ void OnPaint(gfx::Canvas* canvas) override;
// Draw the given autofill entry in |entry_rect|.
void DrawAutofillEntry(gfx::Canvas* canvas,
« no previous file with comments | « chrome/browser/ui/views/autofill/autofill_popup_base_view.h ('k') | chrome/browser/ui/views/autofill/decorated_textfield.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698