diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 04:12:18 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-30 04:12:18 +0000 |
commit | 0f2f4b60511540e292e085ba5e1985be6bf93908 (patch) | |
tree | 6d6bb042fe78bb23c4eca3cf4a4222a3dab38e74 /chrome/browser/views/restart_message_box.h | |
parent | aaeb9dc745d49afa66c1b613daa5a3123f309955 (diff) | |
download | chromium_src-0f2f4b60511540e292e085ba5e1985be6bf93908.zip chromium_src-0f2f4b60511540e292e085ba5e1985be6bf93908.tar.gz chromium_src-0f2f4b60511540e292e085ba5e1985be6bf93908.tar.bz2 |
Window Delegate Improvements:
- Windows now must have a Delegate. Just construct the default WindowDelegate
if
you don't want to have to write one in testing.
- Windows now obtain their contents view by asking the delegate via
WindowDelegate::GetContentsView.
- Contents views no longer need to manually store a pointer to the Window that
contains them, WindowDelegate does this automatically via its window()
accessor.
Reviewer notes:
- review window_delegate.h first, then
- window.h/cc
- custom frame window.h/cc
- constrained_window_impl.h/cc
- then everything else (just updating all call sites)
B=1280060
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/restart_message_box.h')
-rw-r--r-- | chrome/browser/views/restart_message_box.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/views/restart_message_box.h b/chrome/browser/views/restart_message_box.h index 5a5da45..3ae42dd 100644 --- a/chrome/browser/views/restart_message_box.h +++ b/chrome/browser/views/restart_message_box.h @@ -33,6 +33,8 @@ #include "base/basictypes.h" #include "chrome/views/dialog_delegate.h" +class MessageBoxView; + // A dialog box that tells the user that s/he needs to restart Chrome // for a change to take effect. class RestartMessageBox : public ChromeViews::DialogDelegate { @@ -49,11 +51,14 @@ class RestartMessageBox : public ChromeViews::DialogDelegate { // ChromeViews::WindowDelegate: virtual void WindowClosing(); virtual bool IsModal() const; + virtual ChromeViews::View* GetContentsView(); private: explicit RestartMessageBox(HWND parent_hwnd); virtual ~RestartMessageBox(); + MessageBoxView* message_box_view_; + DISALLOW_EVIL_CONSTRUCTORS(RestartMessageBox); }; |