Chromium Code Reviews| 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 621a36802115d99387907da2e409595fe41692f3..8ee57daab444a9f3da61d761b21573a3ea7b1e3c 100644 |
| --- a/content/browser/download/drag_download_file.h |
| +++ b/content/browser/download/drag_download_file.h |
| @@ -6,11 +6,13 @@ |
| #define CONTENT_BROWSER_DOWNLOAD_DRAG_DOWNLOAD_FILE_H_ |
| #pragma once |
| +#include "base/compiler_specific.h" |
| #include "base/file_path.h" |
| #include "base/memory/linked_ptr.h" |
| #include "content/browser/download/download_file.h" |
| #include "content/browser/download/download_item.h" |
| #include "content/browser/download/download_manager.h" |
| +#include "content/common/content_export.h" |
| #include "googleurl/src/gurl.h" |
| #include "ui/base/dragdrop/download_file_interface.h" |
| @@ -20,9 +22,10 @@ namespace net { |
| class FileStream; |
| } |
| -class DragDownloadFile : public ui::DownloadFileProvider, |
| - public DownloadManager::Observer, |
| - public DownloadItem::Observer { |
| +class CONTENT_EXPORT DragDownloadFile |
| + : NON_EXPORTED_BASE(public ui::DownloadFileProvider), |
|
darin (slow to review)
2011/09/04 15:41:04
just tag DownloadFileProvider with UI_EXPORT
Dirk Pranke
2011/09/07 01:46:07
Done. I didn't realize that that worked.
|
| + public DownloadManager::Observer, |
| + public DownloadItem::Observer { |
| public: |
| // On Windows, we need to download into a temporary file. Two threads are |
| // involved: background drag-and-drop thread and UI thread. |