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

Side by Side Diff: chrome/browser/download/download_shelf.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/download/download_shelf.h ('k') | chrome/browser/views/download_item_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/download/download_shelf.h" 5 #include "chrome/browser/download/download_shelf.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "chrome/browser/browser.h" 9 #include "chrome/browser/browser.h"
10 #include "chrome/browser/dom_ui/downloads_ui.h" 10 #include "chrome/browser/dom_ui/downloads_ui.h"
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 file_util::GetFileExtensionFromPath(download_->full_path()); 105 file_util::GetFileExtensionFromPath(download_->full_path());
106 download_->manager()->OpenFilesOfExtension( 106 download_->manager()->OpenFilesOfExtension(
107 extension, !ItemIsChecked(ALWAYS_OPEN_TYPE)); 107 extension, !ItemIsChecked(ALWAYS_OPEN_TYPE));
108 break; 108 break;
109 } 109 }
110 case CANCEL: 110 case CANCEL:
111 model_->CancelTask(); 111 model_->CancelTask();
112 break; 112 break;
113 case REMOVE_ITEM: 113 case REMOVE_ITEM:
114 download_->Remove(false); 114 download_->Remove(false);
115 // |download_| has been deleted now, prevent further access to it.
116 download_ = NULL;
117 model_ = NULL;
115 break; 118 break;
116 case TOGGLE_PAUSE: 119 case TOGGLE_PAUSE:
117 // It is possible for the download to complete before the user clicks the 120 // It is possible for the download to complete before the user clicks the
118 // menu item, recheck if the download is in progress state before toggling 121 // menu item, recheck if the download is in progress state before toggling
119 // pause. 122 // pause.
120 if (download_->state() == DownloadItem::IN_PROGRESS) 123 if (download_->state() == DownloadItem::IN_PROGRESS)
121 download_->TogglePause(); 124 download_->TogglePause();
122 break; 125 break;
123 default: 126 default:
124 NOTREACHED(); 127 NOTREACHED();
125 } 128 }
126 } 129 }
OLDNEW
« no previous file with comments | « chrome/browser/download/download_shelf.h ('k') | chrome/browser/views/download_item_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698