summaryrefslogtreecommitdiffstats
path: root/ui/base/dragdrop
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-13 22:11:57 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-13 22:11:57 +0000
commit8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c (patch)
tree6d15da0c38831ea9180d3d90caa66d5adc7cb000 /ui/base/dragdrop
parent8ea5d4bd1f750572bec6b6b73732bba147f0be42 (diff)
downloadchromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.zip
chromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.tar.gz
chromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.tar.bz2
Annotate all of the functions in content that need to be exported, in preparation for creating a content shared library.
R=darin@chromium.org, jam@chromium.org, willchan@chromium.org BUG=90442 TEST=everything still compiles Review URL: http://codereview.chromium.org/7800015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/base/dragdrop')
-rw-r--r--ui/base/dragdrop/download_file_interface.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/base/dragdrop/download_file_interface.h b/ui/base/dragdrop/download_file_interface.h
index ab09afd..5b98510 100644
--- a/ui/base/dragdrop/download_file_interface.h
+++ b/ui/base/dragdrop/download_file_interface.h
@@ -11,6 +11,8 @@
#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
+#include "ui/base/ui_export.h"
+
#if defined(OS_WIN)
#include <objidl.h>
#endif
@@ -20,7 +22,7 @@ class FilePath;
namespace ui {
// Defines the interface to observe the status of file download.
-class DownloadFileObserver
+class UI_EXPORT DownloadFileObserver
: public base::RefCountedThreadSafe<DownloadFileObserver> {
public:
virtual void OnDownloadCompleted(const FilePath& file_path) = 0;
@@ -32,7 +34,7 @@ class DownloadFileObserver
};
// Defines the interface to control how a file is downloaded.
-class DownloadFileProvider
+class UI_EXPORT DownloadFileProvider
: public base::RefCountedThreadSafe<DownloadFileProvider> {
public:
virtual bool Start(DownloadFileObserver* observer) = 0;