OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |