blob: ce5ccbed196f41d7bc7f14e3c63972c1bae58a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H_
#pragma once
#include "base/basictypes.h"
#include "gfx/font.h"
#include "views/controls/link.h"
#include "views/view.h"
class SkBitmap;
class TabContents;
///////////////////////////////////////////////////////////////////////////////
//
// SadTabView
//
// A views::View subclass used to render the presentation of the crashed
// "sad tab" in the browser window when a renderer is destroyed unnaturally.
//
///////////////////////////////////////////////////////////////////////////////
class SadTabView : public views::View,
public views::LinkController {
public:
enum Kind {
CRASHED, // The tab crashed. Display the "Aw, Snap!" page.
KILLED // The tab was killed. Display the killed tab page.
};
explicit SadTabView(TabContents* tab_contents, Kind kind);
virtual ~SadTabView() {}
// Overridden from views::View:
virtual void Paint(gfx::Canvas* canvas);
virtual void Layout();
// Overridden from views::LinkController:
virtual void LinkActivated(views::Link* source, int event_flags);
private:
static void InitClass(Kind kind);
// Assorted resources for display.
static SkBitmap* sad_tab_bitmap_;
static gfx::Font* title_font_;
static gfx::Font* message_font_;
static std::wstring title_;
static std::wstring message_;
static int title_width_;
TabContents* tab_contents_;
views::Link* learn_more_link_;
// Regions within the display for different components, populated by
// Layout().
gfx::Rect icon_bounds_;
gfx::Rect title_bounds_;
gfx::Rect message_bounds_;
gfx::Rect link_bounds_;
Kind kind_;
DISALLOW_COPY_AND_ASSIGN(SadTabView);
};
#endif // CHROME_BROWSER_UI_VIEWS_SAD_TAB_VIEW_H__
|