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_HUNG_RENDERER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_HUNG_RENDERER_VIEW_H_
8 #include "base/memory/scoped_vector.h"
9 #include "chrome/browser/favicon/favicon_tab_helper.h"
10 #include "content/public/browser/web_contents_observer.h"
11 #include "ui/base/models/table_model.h"
12 #include "ui/views/controls/button/button.h"
13 #include "ui/views/controls/table/table_grouper.h"
14 #include "ui/views/controls/table/table_view.h"
15 #include "ui/views/window/dialog_delegate.h"
25 // Provides functionality to display information about a hung renderer.
26 class HungPagesTableModel
: public ui::TableModel
, public views::TableGrouper
{
28 // The Delegate is notified any time a WebContents the model is listening to
32 virtual void TabDestroyed() = 0;
35 virtual ~Delegate() {}
38 explicit HungPagesTableModel(Delegate
* delegate
);
39 virtual ~HungPagesTableModel();
41 void InitForWebContents(content::WebContents
* hung_contents
);
43 // Returns the first RenderProcessHost, or NULL if there aren't any
45 content::RenderProcessHost
* GetRenderProcessHost();
47 // Returns the first RenderViewHost, or NULL if there aren't any WebContents.
48 content::RenderViewHost
* GetRenderViewHost();
50 // Overridden from ui::TableModel:
51 virtual int RowCount() OVERRIDE
;
52 virtual base::string16
GetText(int row
, int column_id
) OVERRIDE
;
53 virtual gfx::ImageSkia
GetIcon(int row
) OVERRIDE
;
54 virtual void SetObserver(ui::TableModelObserver
* observer
) OVERRIDE
;
56 // Overridden from views::TableGrouper:
57 virtual void GetGroupRange(int model_index
,
58 views::GroupRange
* range
) OVERRIDE
;
61 // Used to track a single WebContents. If the WebContents is destroyed
62 // TabDestroyed() is invoked on the model.
63 class WebContentsObserverImpl
: public content::WebContentsObserver
{
65 WebContentsObserverImpl(HungPagesTableModel
* model
,
66 content::WebContents
* tab
);
68 content::WebContents
* web_contents() const {
69 return content::WebContentsObserver::web_contents();
72 FaviconTabHelper
* favicon_tab_helper() {
73 return FaviconTabHelper::FromWebContents(web_contents());
76 // WebContentsObserver overrides:
77 virtual void RenderProcessGone(base::TerminationStatus status
) OVERRIDE
;
78 virtual void WebContentsDestroyed(content::WebContents
* tab
) OVERRIDE
;
81 HungPagesTableModel
* model_
;
83 DISALLOW_COPY_AND_ASSIGN(WebContentsObserverImpl
);
86 // Invoked when a WebContents is destroyed. Cleans up |tab_observers_| and
87 // notifies the observer and delegate.
88 void TabDestroyed(WebContentsObserverImpl
* tab
);
90 typedef ScopedVector
<WebContentsObserverImpl
> TabObservers
;
91 TabObservers tab_observers_
;
93 ui::TableModelObserver
* observer_
;
96 DISALLOW_COPY_AND_ASSIGN(HungPagesTableModel
);
99 // This class displays a dialog which contains information about a hung
101 class HungRendererDialogView
: public views::DialogDelegateView
,
102 public views::ButtonListener
,
103 public HungPagesTableModel::Delegate
{
105 // Factory function for creating an instance of the HungRendererDialogView
106 // class. At any given point only one instance can be active.
107 static HungRendererDialogView
* Create(gfx::NativeView context
);
109 // Returns a pointer to the singleton instance if any.
110 static HungRendererDialogView
* GetInstance();
112 // Platform specific function to kill the renderer process identified by the
114 static void KillRendererProcess(base::ProcessHandle process_handle
);
116 // Returns true if the frame is in the foreground.
117 static bool IsFrameActive(content::WebContents
* contents
);
119 virtual void ShowForWebContents(content::WebContents
* contents
);
120 virtual void EndForWebContents(content::WebContents
* contents
);
122 // views::DialogDelegateView overrides:
123 virtual base::string16
GetWindowTitle() const OVERRIDE
;
124 virtual void WindowClosing() OVERRIDE
;
125 virtual int GetDialogButtons() const OVERRIDE
;
126 virtual base::string16
GetDialogButtonLabel(
127 ui::DialogButton button
) const OVERRIDE
;
128 virtual views::View
* CreateExtraView() OVERRIDE
;
129 virtual bool Accept(bool window_closing
) OVERRIDE
;
130 virtual bool UseNewStyleForThisDialog() const OVERRIDE
;
132 // views::ButtonListener overrides:
133 virtual void ButtonPressed(views::Button
* sender
,
134 const ui::Event
& event
) OVERRIDE
;
136 // HungPagesTableModel::Delegate overrides:
137 virtual void TabDestroyed() OVERRIDE
;
140 HungRendererDialogView();
141 virtual ~HungRendererDialogView();
143 // views::View overrides:
144 virtual void ViewHierarchyChanged(
145 const ViewHierarchyChangedDetails
& details
) OVERRIDE
;
147 static HungRendererDialogView
* g_instance_
;
150 // Initialize the controls in this dialog.
153 static void InitClass();
155 // Controls within the dialog box.
156 views::TableView
* hung_pages_table_
;
158 // The extra button inserted into the ClientView to kill the errant process.
159 views::LabelButton
* kill_button_
;
161 // The model that provides the contents of the table that shows a list of
162 // pages affected by the hang.
163 scoped_ptr
<HungPagesTableModel
> hung_pages_table_model_
;
165 // Whether or not we've created controls for ourself.
168 // An amusing icon image.
169 static gfx::ImageSkia
* frozen_icon_
;
171 DISALLOW_COPY_AND_ASSIGN(HungRendererDialogView
);
174 #endif // CHROME_BROWSER_UI_VIEWS_HUNG_RENDERER_VIEW_H_