| Index: webkit/blob/deletable_file_reference.h
|
| diff --git a/webkit/blob/deletable_file_reference.h b/webkit/blob/deletable_file_reference.h
|
| index a4301bf61fc9a8eed64024d57b75f521448e0a28..d704de3715fdb85f890261f8659c2fac2a1fd234 100644
|
| --- a/webkit/blob/deletable_file_reference.h
|
| +++ b/webkit/blob/deletable_file_reference.h
|
| @@ -11,6 +11,7 @@
|
| #include "base/callback.h"
|
| #include "base/file_path.h"
|
| #include "base/memory/ref_counted.h"
|
| +#include "webkit/blob/blob_export.h"
|
|
|
| namespace base {
|
| class MessageLoopProxy;
|
| @@ -20,7 +21,8 @@ namespace webkit_blob {
|
|
|
| // A refcounted wrapper around a FilePath that schedules the file
|
| // to be deleted upon final release.
|
| -class DeletableFileReference : public base::RefCounted<DeletableFileReference> {
|
| +class BLOB_EXPORT DeletableFileReference :
|
| + public base::RefCounted<DeletableFileReference> {
|
| public:
|
| typedef base::Callback<void(const FilePath&)> DeletionCallback;
|
|
|
|
|