summaryrefslogtreecommitdiffstats
path: root/chrome/browser/app_modal_dialog.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 21:51:21 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-02 21:51:21 +0000
commit45bfe652b42601de8354e36f8b829c178bb30711 (patch)
tree42fa1185bcaa11e8b32e618b895030ecaa645aef /chrome/browser/app_modal_dialog.h
parentf285d9c29dd7428e89c34f0724fbd63d4526dc50 (diff)
downloadchromium_src-45bfe652b42601de8354e36f8b829c178bb30711.zip
chromium_src-45bfe652b42601de8354e36f8b829c178bb30711.tar.gz
chromium_src-45bfe652b42601de8354e36f8b829c178bb30711.tar.bz2
Fix probably a lot of crash bugs. There was a member variable in JSModalDialog that was masking the one in AppModalDialog that really mattered. This was preventing proper cleanup of the alert window under certain circumstances.
http://crbug.com/57368 TEST=none Review URL: http://codereview.chromium.org/3543008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61315 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/app_modal_dialog.h')
-rw-r--r--chrome/browser/app_modal_dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/app_modal_dialog.h b/chrome/browser/app_modal_dialog.h
index 708e86e..0803972 100644
--- a/chrome/browser/app_modal_dialog.h
+++ b/chrome/browser/app_modal_dialog.h
@@ -69,10 +69,10 @@ class AppModalDialog {
// Parent tab contents.
TabContents* tab_contents_;
- private:
// The toolkit-specific implementation of the app modal dialog box.
NativeAppModalDialog* native_dialog_;
+ private:
// Information about the message box is held in the following variables.
std::wstring title_;