Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: chrome/browser/views/download_item_view.cc

Issue 216018: Fix a bug where we access a view after deletion.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/download/download_shelf.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/download_item_view.cc
===================================================================
--- chrome/browser/views/download_item_view.cc (revision 26514)
+++ chrome/browser/views/download_item_view.cc (working copy)
@@ -820,9 +820,13 @@
DownloadShelfContextMenuWin menu(model_.get(),
GetWidget()->GetNativeView(),
point);
- drop_down_pressed_ = false;
- // Showing the menu blocks. Here we revert the state.
- SetState(NORMAL, NORMAL);
+ // If the menu action was to remove the download, this view will also be
+ // invalid so we must not access 'this' in this case.
+ if (menu.download()) {
+ drop_down_pressed_ = false;
+ // Showing the menu blocks. Here we revert the state.
+ SetState(NORMAL, NORMAL);
+ }
}
return true;
}
« no previous file with comments | « chrome/browser/download/download_shelf.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698