| Index: content/browser/download/download_manager_impl.cc
|
| ===================================================================
|
| --- content/browser/download/download_manager_impl.cc (revision 116331)
|
| +++ content/browser/download/download_manager_impl.cc (working copy)
|
| @@ -309,7 +309,7 @@
|
|
|
| if (download->PromptUserForSaveLocation()) {
|
| // We must ask the user for the place to put the download.
|
| - TabContents* contents = download->GetTabContents();
|
| + WebContents* contents = download->GetTabContents();
|
|
|
| // |id_ptr| will be deleted in either FileSelected() or
|
| // FileSelectionCancelled().
|
| @@ -991,7 +991,7 @@
|
| // If the contents no longer exists, we ask the embedder to suggest another
|
| // tab.
|
| if (!content)
|
| - content = delegate_->GetAlternativeTabContentsToNotifyForDownload();
|
| + content = delegate_->GetAlternativeWebContentsToNotifyForDownload();
|
|
|
| if (content && content->GetDelegate())
|
| content->GetDelegate()->OnStartDownload(content, download);
|
|
|