| Index: chrome/browser/ui/views/hung_renderer_view.h
|
| diff --git a/chrome/browser/ui/views/hung_renderer_view.h b/chrome/browser/ui/views/hung_renderer_view.h
|
| index d178aafa5ba473af068549c931fe51b5c9ea2213..9c216ebc5deadfbbe229d36bbc54832829c8d342 100644
|
| --- a/chrome/browser/ui/views/hung_renderer_view.h
|
| +++ b/chrome/browser/ui/views/hung_renderer_view.h
|
| @@ -19,6 +19,7 @@ class WebContents;
|
| }
|
|
|
| namespace views {
|
| +class Label;
|
| class LabelButton;
|
| }
|
|
|
| @@ -149,6 +150,12 @@ class HungRendererDialogView : public views::DialogDelegateView,
|
|
|
| static void InitClass();
|
|
|
| + // An amusing icon image.
|
| + static gfx::ImageSkia* frozen_icon_;
|
| +
|
| + // The label describing the list.
|
| + views::Label* info_label_;
|
| +
|
| // Controls within the dialog box.
|
| views::TableView* hung_pages_table_;
|
|
|
| @@ -162,9 +169,6 @@ class HungRendererDialogView : public views::DialogDelegateView,
|
| // Whether or not we've created controls for ourself.
|
| bool initialized_;
|
|
|
| - // An amusing icon image.
|
| - static gfx::ImageSkia* frozen_icon_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(HungRendererDialogView);
|
| };
|
|
|
|
|