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

Side by Side Diff: chrome/browser/ui/views/first_run_dialog.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_
6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "ui/views/controls/link_listener.h" 9 #include "ui/views/controls/link_listener.h"
10 #include "ui/views/window/dialog_delegate.h" 10 #include "ui/views/window/dialog_delegate.h"
(...skipping 13 matching lines...) Expand all
24 static bool Show(Profile* profile); 24 static bool Show(Profile* profile);
25 25
26 private: 26 private:
27 explicit FirstRunDialog(Profile* profile); 27 explicit FirstRunDialog(Profile* profile);
28 virtual ~FirstRunDialog(); 28 virtual ~FirstRunDialog();
29 29
30 // This terminates the nested message-loop. 30 // This terminates the nested message-loop.
31 void Done(); 31 void Done();
32 32
33 // views::DialogDelegate: 33 // views::DialogDelegate:
34 virtual views::View* CreateExtraView() OVERRIDE; 34 virtual views::View* CreateExtraView() override;
35 virtual void OnClosed() OVERRIDE; 35 virtual void OnClosed() override;
36 virtual bool Accept() OVERRIDE; 36 virtual bool Accept() override;
37 virtual int GetDialogButtons() const OVERRIDE; 37 virtual int GetDialogButtons() const override;
38 38
39 // views::LinkListener: 39 // views::LinkListener:
40 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; 40 virtual void LinkClicked(views::Link* source, int event_flags) override;
41 41
42 Profile* profile_; 42 Profile* profile_;
43 views::Checkbox* make_default_; 43 views::Checkbox* make_default_;
44 views::Checkbox* report_crashes_; 44 views::Checkbox* report_crashes_;
45 base::Closure quit_runloop_; 45 base::Closure quit_runloop_;
46 46
47 DISALLOW_COPY_AND_ASSIGN(FirstRunDialog); 47 DISALLOW_COPY_AND_ASSIGN(FirstRunDialog);
48 }; 48 };
49 49
50 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_ 50 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_DIALOG_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/first_run_bubble_unittest.cc ('k') | chrome/browser/ui/views/frame/browser_command_handler_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698