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_SAD_TAB_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "chrome/browser/ui/sad_tab.h"
11 #include "ui/views/controls/button/button.h"
12 #include "ui/views/controls/link_listener.h"
13 #include "ui/views/view.h"
24 ///////////////////////////////////////////////////////////////////////////////
28 // A views::View subclass used to render the presentation of the crashed
29 // "sad tab" in the browser window when a renderer is destroyed unnaturally.
31 ///////////////////////////////////////////////////////////////////////////////
32 class SadTabView
: public chrome::SadTab
,
34 public views::LinkListener
,
35 public views::ButtonListener
{
37 SadTabView(content::WebContents
* web_contents
, chrome::SadTabKind kind
);
38 ~SadTabView() override
;
40 // Overridden from views::View:
41 void Layout() override
;
43 // Overridden from views::LinkListener:
44 void LinkClicked(views::Link
* source
, int event_flags
) override
;
46 // Overridden from views::ButtonListener:
47 void ButtonPressed(views::Button
* source
, const ui::Event
& event
) override
;
50 // Overridden from views::View:
51 void OnPaint(gfx::Canvas
* canvas
) override
;
54 // Overridden from chrome::SadTab:
56 void Close() override
;
58 views::Label
* CreateLabel(const base::string16
& text
);
59 views::Link
* CreateLink(const base::string16
& text
);
61 content::WebContents
* web_contents_
;
62 chrome::SadTabKind kind_
;
64 views::Label
* message_
;
65 views::Link
* help_link_
;
66 views::Link
* feedback_link_
;
67 views::LabelButton
* reload_button_
;
69 DISALLOW_COPY_AND_ASSIGN(SadTabView
);
72 #endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__