summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_writer_delegate.h
diff options
context:
space:
mode:
authorbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-30 08:14:27 +0000
committerbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-30 08:14:27 +0000
commit0b38b4e5f4937528241ee5004d3bf953629a875b (patch)
tree19b83430989f97ac61262eec21e9fc09973aa28e /webkit/fileapi/file_writer_delegate.h
parent26d35e56c0ed0cc8b4eb3af0096c6c630bb934dc (diff)
downloadchromium_src-0b38b4e5f4937528241ee5004d3bf953629a875b.zip
chromium_src-0b38b4e5f4937528241ee5004d3bf953629a875b.tar.gz
chromium_src-0b38b4e5f4937528241ee5004d3bf953629a875b.tar.bz2
Move fileapi into its own component
Before this change fileapi is a static library. As it has static data, this causes problems when used from multiple components like chrome and content. BUG=129885 TEST=Existing tests Review URL: https://chromiumcodereview.appspot.com/10447055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_writer_delegate.h')
-rw-r--r--webkit/fileapi/file_writer_delegate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/fileapi/file_writer_delegate.h b/webkit/fileapi/file_writer_delegate.h
index e2bf74d..90cc577 100644
--- a/webkit/fileapi/file_writer_delegate.h
+++ b/webkit/fileapi/file_writer_delegate.h
@@ -13,6 +13,7 @@
#include "net/base/file_stream.h"
#include "net/base/io_buffer.h"
#include "net/url_request/url_request.h"
+#include "webkit/fileapi/fileapi_export.h"
#include "webkit/fileapi/file_system_operation_interface.h"
#include "webkit/fileapi/file_system_path.h"
@@ -22,7 +23,8 @@ class FileSystemOperationContext;
class FileSystemQuotaUtil;
class FileWriter;
-class FileWriterDelegate : public net::URLRequest::Delegate {
+class FILEAPI_EXPORT_PRIVATE FileWriterDelegate
+ : public net::URLRequest::Delegate {
public:
FileWriterDelegate(
const FileSystemOperationInterface::WriteCallback& write_callback,