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

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

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 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/save_package.h
diff --git a/content/browser/download/save_package.h b/content/browser/download/save_package.h
index 824a3368603106c4a180c7822f2adcb81c7acf3e..4204e30523018682979efe53413eb648baf0cee3 100644
--- a/content/browser/download/save_package.h
+++ b/content/browser/download/save_package.h
@@ -19,6 +19,7 @@
#include "base/task.h"
#include "content/browser/download/download_manager.h"
#include "content/browser/tab_contents/tab_contents_observer.h"
+#include "content/common/content_export.h"
#include "googleurl/src/gurl.h"
class GURL;
@@ -49,10 +50,11 @@ class Time;
// saved. Each file is represented by a SaveItem, and all SaveItems are owned
// by the SavePackage. SaveItems are created when a user initiates a page
// saving job, and exist for the duration of one tab's life time.
-class SavePackage : public base::RefCountedThreadSafe<SavePackage>,
- public TabContentsObserver,
- public DownloadItem::Observer,
- public base::SupportsWeakPtr<SavePackage> {
+class CONTENT_EXPORT SavePackage
+ : public base::RefCountedThreadSafe<SavePackage>,
+ public TabContentsObserver,
+ public DownloadItem::Observer,
+ public base::SupportsWeakPtr<SavePackage> {
public:
enum SavePackageType {
// The value of the save type before its set by the user.

Powered by Google App Engine
This is Rietveld 408576698