Index: chrome/browser/download/download_danger_prompt.h |
diff --git a/chrome/browser/download/download_danger_prompt.h b/chrome/browser/download/download_danger_prompt.h |
index 08c15277b89257c174387ed772a2db12455e4d41..2edc946983c9de238c7b07fb252957d7101c1085 100644 |
--- a/chrome/browser/download/download_danger_prompt.h |
+++ b/chrome/browser/download/download_danger_prompt.h |
@@ -10,7 +10,6 @@ |
class ConstrainedWindow; |
class TabContents; |
-typedef TabContents TabContentsWrapper; |
namespace content { |
class DownloadItem; |
@@ -34,12 +33,12 @@ class DownloadDangerPrompt { |
// Return a new self-deleting DownloadDangerPrompt. |accepted| or |canceled| |
// will be run when the the respective action is invoked. |canceled| may also |
// be called when |item| is either no longer dangerous or no longer in |
- // progress, or if the tab corresponding to |tab_contents_wrapper| is |
+ // progress, or if the tab corresponding to |tab_contents| is |
// closing. The returned DownloadDangerPrompt* is only used for testing. The |
// caller does not own the object and receive no guarantees about lifetime. |
static DownloadDangerPrompt* Create( |
content::DownloadItem* item, |
- TabContentsWrapper* tab_contents_wrapper, |
+ TabContents* tab_contents, |
const base::Closure& accepted, |
const base::Closure& canceled); |