| Index: content/browser/download/mhtml_generation_manager.h
|
| ===================================================================
|
| --- content/browser/download/mhtml_generation_manager.h (revision 116109)
|
| +++ content/browser/download/mhtml_generation_manager.h (working copy)
|
| @@ -15,8 +15,11 @@
|
| #include "ipc/ipc_platform_file.h"
|
|
|
| class FilePath;
|
| -class TabContents;
|
|
|
| +namespace content {
|
| +class WebContents;
|
| +}
|
| +
|
| class CONTENT_EXPORT MHTMLGenerationManager
|
| : public base::RefCountedThreadSafe<
|
| MHTMLGenerationManager, content::BrowserThread::DeleteOnUIThread> {
|
| @@ -28,8 +31,8 @@
|
| int64 /* size of the file */)> GenerateMHTMLCallback;
|
|
|
| // Instructs the render view to generate a MHTML representation of the current
|
| - // page for |tab_contents|.
|
| - void GenerateMHTML(TabContents* tab_contents,
|
| + // page for |web_contents|.
|
| + void GenerateMHTML(content::WebContents* web_contents,
|
| const FilePath& file,
|
| const GenerateMHTMLCallback& callback);
|
|
|
|
|