Index: chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h |
=================================================================== |
--- chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h (revision 116011) |
+++ chrome/browser/ui/webui/chromeos/imageburner/imageburner_utils.h (working copy) |
@@ -49,16 +49,16 @@ |
// Downloads a file from the Internet. |
// Should be called from UI thread. |
void DownloadFile(const GURL& url, const FilePath& target_file, |
- TabContents* tab_contents); |
+ content::WebContents* web_contents); |
// Creates file stream for a download. |
// Must be called from FILE thread. |
void CreateFileStreamOnFileThread(const GURL& url, const FilePath& file_path, |
- TabContents* tab_contents); |
+ content::WebContents* web_contents); |
// Gets called after file stream is created and starts download. |
void OnFileStreamCreatedOnUIThread(const GURL& url, |
- const FilePath& file_path, TabContents* tab_contents, |
+ const FilePath& file_path, content::WebContents* web_contents, |
net::FileStream* created_file_stream); |
// Adds an item to list of listeners that wait for confirmation that download |
@@ -235,7 +235,7 @@ |
// Creates URL image should be fetched from. |
// Must be called from UI thread. |
- void FetchConfigFile(TabContents* tab_content, |
+ void FetchConfigFile(content::WebContents* web_content, |
Delegate* delegate); |
// Creates directory image will be downloaded to. |