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

Unified Diff: content/browser/download/drag_download_file.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/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.

Powered by Google App Engine
This is Rietveld 408576698