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

Unified Diff: chrome/browser/ui/views/autofill/info_bubble.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/info_bubble.h
diff --git a/chrome/browser/ui/views/autofill/info_bubble.h b/chrome/browser/ui/views/autofill/info_bubble.h
index 60434214f44d0cd755479878db60ca067c42bab0..52b84673be8bdcde19e4864f4e180e20e81b26bb 100644
--- a/chrome/browser/ui/views/autofill/info_bubble.h
+++ b/chrome/browser/ui/views/autofill/info_bubble.h
@@ -19,7 +19,7 @@ class InfoBubbleFrame;
class InfoBubble : public views::BubbleDelegateView {
public:
InfoBubble(views::View* anchor, const base::string16& message);
- virtual ~InfoBubble();
+ ~InfoBubble() override;
// Shows the bubble. |widget_| will be NULL until this is called.
void Show();
@@ -31,12 +31,12 @@ class InfoBubble : public views::BubbleDelegateView {
void UpdatePosition();
// views::BubbleDelegateView:
- virtual views::NonClientFrameView* CreateNonClientFrameView(
+ views::NonClientFrameView* CreateNonClientFrameView(
views::Widget* widget) override;
- virtual gfx::Size GetPreferredSize() const override;
- virtual void OnWidgetDestroyed(views::Widget* widget) override;
- virtual void OnWidgetBoundsChanged(views::Widget* widget,
- const gfx::Rect& new_bounds) override;
+ gfx::Size GetPreferredSize() const override;
+ void OnWidgetDestroyed(views::Widget* widget) override;
+ void OnWidgetBoundsChanged(views::Widget* widget,
+ const gfx::Rect& new_bounds) override;
views::View* anchor() { return anchor_; }
const views::View* anchor() const { return anchor_; }
« no previous file with comments | « chrome/browser/ui/views/autofill/generated_credit_card_bubble_views.h ('k') | chrome/browser/ui/views/autofill/info_bubble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698