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

Unified Diff: chrome/browser/ui/views/first_run_dialog.h

Issue 680133002: 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/first_run_dialog.h
diff --git a/chrome/browser/ui/views/first_run_dialog.h b/chrome/browser/ui/views/first_run_dialog.h
index 555907eb6e803a77b1db3a78e732f47d9f30e7e2..31f68bb9a6c519e2229e79ab042dc26bd354b675 100644
--- a/chrome/browser/ui/views/first_run_dialog.h
+++ b/chrome/browser/ui/views/first_run_dialog.h
@@ -25,19 +25,19 @@ class FirstRunDialog : public views::DialogDelegateView,
private:
explicit FirstRunDialog(Profile* profile);
- virtual ~FirstRunDialog();
+ ~FirstRunDialog() override;
// This terminates the nested message-loop.
void Done();
// views::DialogDelegate:
- virtual views::View* CreateExtraView() override;
- virtual void OnClosed() override;
- virtual bool Accept() override;
- virtual int GetDialogButtons() const override;
+ views::View* CreateExtraView() override;
+ void OnClosed() override;
+ bool Accept() override;
+ int GetDialogButtons() const override;
// views::LinkListener:
- virtual void LinkClicked(views::Link* source, int event_flags) override;
+ void LinkClicked(views::Link* source, int event_flags) override;
Profile* profile_;
views::Checkbox* make_default_;
« no previous file with comments | « chrome/browser/ui/views/first_run_bubble_unittest.cc ('k') | chrome/browser/ui/views/fullscreen_exit_bubble_views.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698