Index: content/browser/download/download_item.h |
diff --git a/content/browser/download/download_item.h b/content/browser/download/download_item.h |
index 13e884b47c9b2815dd7da183ed18e7654a97c955..6e1539a7af1cd4959aa2fd4c678c706f505e4d2c 100644 |
--- a/content/browser/download/download_item.h |
+++ b/content/browser/download/download_item.h |
@@ -25,6 +25,7 @@ |
#include "base/observer_list.h" |
#include "base/time.h" |
#include "base/timer.h" |
+#include "content/common/content_export.h" |
darin (slow to review)
2011/09/04 15:41:04
nit: "browser" before "common"
Dirk Pranke
2011/09/07 01:46:07
Done. Apparently I can't alphabetize reliably.
|
#include "content/browser/download/download_request_handle.h" |
#include "content/browser/download/download_state_info.h" |
#include "googleurl/src/gurl.h" |
@@ -39,7 +40,7 @@ struct DownloadPersistentStoreInfo; |
// Destination tab's download view, may refer to a given DownloadItem. |
// |
// This is intended to be used only on the UI thread. |
-class DownloadItem { |
+class CONTENT_EXPORT DownloadItem { |
public: |
enum DownloadState { |
// Download is actively progressing. |
@@ -97,7 +98,7 @@ class DownloadItem { |
// Interface that observers of a particular download must implement in order |
// to receive updates to the download's status. |
- class Observer { |
+ class CONTENT_EXPORT Observer { |
public: |
virtual void OnDownloadUpdated(DownloadItem* download) = 0; |