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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.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/cocoa/autofill/autofill_popup_view_bridge.h
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h
index 8de74bc5714b1ede7a69c6b82998c975efa267b2..3cf9c36f74e753786c93f85e58e8d35da68ab6bb 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h
+++ b/chrome/browser/ui/cocoa/autofill/autofill_popup_view_bridge.h
@@ -28,13 +28,13 @@ class AutofillPopupViewBridge : public AutofillPopupView {
explicit AutofillPopupViewBridge(AutofillPopupController* controller);
private:
- virtual ~AutofillPopupViewBridge();
+ ~AutofillPopupViewBridge() override;
// AutofillPopupView implementation.
- virtual void Hide() override;
- virtual void Show() override;
- virtual void InvalidateRow(size_t row) override;
- virtual void UpdateBoundsAndRedrawPopup() override;
+ void Hide() override;
+ void Show() override;
+ void InvalidateRow(size_t row) override;
+ void UpdateBoundsAndRedrawPopup() override;
// Set the initial bounds of the popup, including its placement.
void SetInitialBounds();

Powered by Google App Engine
This is Rietveld 408576698