diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 18:45:56 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-06 18:45:56 +0000 |
commit | 7b9627d188d04b224f972fae709e7cb4f61ae504 (patch) | |
tree | 4d37368f881c9dae023e5172013e87f0b7c58676 /chrome/browser/views | |
parent | 72baf67602ab1dbf95c34a5d8301e0ac5f8b8b41 (diff) | |
download | chromium_src-7b9627d188d04b224f972fae709e7cb4f61ae504.zip chromium_src-7b9627d188d04b224f972fae709e7cb4f61ae504.tar.gz chromium_src-7b9627d188d04b224f972fae709e7cb4f61ae504.tar.bz2 |
Render a "sad tab" on tab crash.
Uses the NotificationRegistrar to notice TAB_CONTENTS_[DIS]CONNECTED events. When it disconnects, add a SadTabGtk to the TabContentsView. Delete it when the tab contents reconnects.
BUG=http://www.crbug.com/11081
TEST=Open http://about:crash. Verify that the sad tab renders properly. Navigate to another page to make sure the SadTabGtk is correctly replaced with a new RenderWidgetHostViewGtk.
Review URL: http://codereview.chromium.org/111003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views')
-rw-r--r-- | chrome/browser/views/sad_tab_view.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/views/sad_tab_view.h b/chrome/browser/views/sad_tab_view.h index 5e9415d..8605c1d 100644 --- a/chrome/browser/views/sad_tab_view.h +++ b/chrome/browser/views/sad_tab_view.h @@ -2,10 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CHROME_BROWSER_VIEWS_SAD_TAB_H_ -#define CHROME_BROWSER_VIEWS_SAD_TAB_H_ +#ifndef CHROME_BROWSER_VIEWS_SAD_TAB_VIEW_H_ +#define CHROME_BROWSER_VIEWS_SAD_TAB_VIEW_H_ #include "app/gfx/chrome_font.h" +#include "base/basictypes.h" #include "chrome/views/view.h" class SkBitmap; @@ -51,7 +52,7 @@ class SadTabView : public views::View { gfx::Rect title_bounds_; gfx::Rect message_bounds_; - DISALLOW_EVIL_CONSTRUCTORS(SadTabView); + DISALLOW_COPY_AND_ASSIGN(SadTabView); }; -#endif // CHROME_BROWSER_VIEWS_SAD_TAB_H__ +#endif // CHROME_BROWSER_VIEWS_SAD_TAB_VIEW_H__ |