From 45bfe652b42601de8354e36f8b829c178bb30711 Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Sat, 2 Oct 2010 21:51:21 +0000 Subject: 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 --- chrome/browser/app_modal_dialog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/app_modal_dialog.h') 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_; -- cgit v1.1