| Index: content/browser/download/drag_download_file.h
|
| diff --git a/content/browser/download/drag_download_file.h b/content/browser/download/drag_download_file.h
|
| index 35c41c8bdfbc9a529daa060b914c75813ec8ac0d..32c8afe799390d0c3af1dcacecd5ffee403e039b 100644
|
| --- a/content/browser/download/drag_download_file.h
|
| +++ b/content/browser/download/drag_download_file.h
|
| @@ -40,7 +40,7 @@ class CONTENT_EXPORT DragDownloadFile : public ui::DownloadFileProvider {
|
| // download into a file stream that has already been created, so only the UI
|
| // thread is involved. |file_stream| must be null on windows but non-null on
|
| // posix systems. |file_path| is an absolute path on all systems.
|
| - DragDownloadFile(const FilePath& file_path,
|
| + DragDownloadFile(const base::FilePath& file_path,
|
| scoped_ptr<net::FileStream> file_stream,
|
| const GURL& url,
|
| const Referrer& referrer,
|
| @@ -61,7 +61,7 @@ class CONTENT_EXPORT DragDownloadFile : public ui::DownloadFileProvider {
|
| void DownloadCompleted(bool is_successful);
|
| void CheckThread();
|
|
|
| - FilePath file_path_;
|
| + base::FilePath file_path_;
|
| scoped_ptr<net::FileStream> file_stream_;
|
| MessageLoop* drag_message_loop_;
|
| State state_;
|
|
|