Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(506)

Unified Diff: content/browser/download/download_item.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: fix exports for switches, content_main Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698