Infobar material design refresh: layout
[chromium-blink-merge.git] / chrome / browser / ui / views / uninstall_view.h
blobda2bf745454a6a84d232ced880138acc73c5aaa7
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_
8 #include <map>
10 #include "base/basictypes.h"
11 #include "base/callback.h"
12 #include "base/compiler_specific.h"
13 #include "base/strings/string16.h"
14 #include "ui/base/models/combobox_model.h"
15 #include "ui/views/controls/button/button.h"
16 #include "ui/views/window/dialog_delegate.h"
18 namespace views {
19 class Checkbox;
20 class Combobox;
21 class Label;
24 // UninstallView implements the dialog that confirms Chrome uninstallation
25 // and asks whether to delete Chrome profile. Also if currently Chrome is set
26 // as default browser, it asks users whether to set another browser as default.
27 class UninstallView : public views::ButtonListener,
28 public views::DialogDelegateView,
29 public ui::ComboboxModel {
30 public:
31 explicit UninstallView(int* user_selection,
32 const base::Closure& quit_closure);
33 ~UninstallView() override;
35 // Overridden form views::ButtonListener.
36 void ButtonPressed(views::Button* sender, const ui::Event& event) override;
38 // Overridden from views::DialogDelegateView:
39 bool Accept() override;
40 bool Cancel() override;
41 base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
43 // Overridden from views::WidgetDelegate:
44 base::string16 GetWindowTitle() const override;
46 // Overridden from ui::ComboboxModel:
47 int GetItemCount() const override;
48 base::string16 GetItemAt(int index) override;
50 private:
51 typedef std::map<base::string16, base::string16> BrowsersMap;
53 // Initializes the controls on the dialog.
54 void SetupControls();
56 views::Label* confirm_label_;
57 views::Checkbox* delete_profile_;
58 views::Checkbox* change_default_browser_;
59 views::Combobox* browsers_combo_;
60 scoped_ptr<BrowsersMap> browsers_;
61 int& user_selection_;
62 base::Closure quit_closure_;
64 DISALLOW_COPY_AND_ASSIGN(UninstallView);
67 #endif // CHROME_BROWSER_UI_VIEWS_UNINSTALL_VIEW_H_