NaCl: Update revision in DEPS, r12770 -> r12773
[chromium-blink-merge.git] / chrome / browser / ui / views / update_recommended_message_box.h
blob9324389d16d4706a6cd1bb7efe9bc004abc602fb
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_UPDATE_RECOMMENDED_MESSAGE_BOX_H_
6 #define CHROME_BROWSER_UI_VIEWS_UPDATE_RECOMMENDED_MESSAGE_BOX_H_
8 #include "base/basictypes.h"
9 #include "ui/gfx/native_widget_types.h"
10 #include "ui/views/window/dialog_delegate.h"
12 namespace views {
13 class MessageBoxView;
16 // A dialog box that tells the user that an update is recommended in order for
17 // the latest version to be put to use.
18 class UpdateRecommendedMessageBox : public views::DialogDelegate {
19 public:
20 static void Show(gfx::NativeWindow parent_window);
22 private:
23 UpdateRecommendedMessageBox();
24 virtual ~UpdateRecommendedMessageBox();
26 // Overridden from views::DialogDelegate:
27 virtual bool Accept() OVERRIDE;
28 virtual base::string16 GetDialogButtonLabel(
29 ui::DialogButton button) const OVERRIDE;
31 // Overridden from views::WidgetDelegate:
32 virtual bool ShouldShowWindowTitle() const OVERRIDE;
33 virtual base::string16 GetWindowTitle() const OVERRIDE;
34 virtual void DeleteDelegate() OVERRIDE;
35 virtual ui::ModalType GetModalType() const OVERRIDE;
36 virtual views::View* GetContentsView() OVERRIDE;
37 virtual views::Widget* GetWidget() OVERRIDE;
38 virtual const views::Widget* GetWidget() const OVERRIDE;
40 views::MessageBoxView* message_box_view_;
42 DISALLOW_COPY_AND_ASSIGN(UpdateRecommendedMessageBox);
45 #endif // CHROME_BROWSER_UI_VIEWS_UPDATE_RECOMMENDED_MESSAGE_BOX_H_