summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/child/fileapi/file_system_dispatcher.cc17
-rw-r--r--content/child/fileapi/file_system_dispatcher.h7
-rw-r--r--content/common/fileapi/file_system_messages.h7
3 files changed, 0 insertions, 31 deletions
diff --git a/content/child/fileapi/file_system_dispatcher.cc b/content/child/fileapi/file_system_dispatcher.cc
index 8810c03..a993288d 100644
--- a/content/child/fileapi/file_system_dispatcher.cc
+++ b/content/child/fileapi/file_system_dispatcher.cc
@@ -299,23 +299,6 @@ void FileSystemDispatcher::Truncate(
*request_id_out = request_id;
}
-void FileSystemDispatcher::WriteDeprecated(
- const GURL& path,
- const GURL& blob_url,
- int64 offset,
- int* request_id_out,
- const WriteCallback& success_callback,
- const StatusCallback& error_callback) {
- int request_id = dispatchers_.Add(
- CallbackDispatcher::Create(success_callback, error_callback));
- ChildThread::current()->Send(
- new FileSystemHostMsg_WriteDeprecated(request_id, path,
- blob_url, offset));
-
- if (request_id_out)
- *request_id_out = request_id;
-}
-
void FileSystemDispatcher::Write(
const GURL& path,
const std::string& blob_id,
diff --git a/content/child/fileapi/file_system_dispatcher.h b/content/child/fileapi/file_system_dispatcher.h
index 55bb299..b3d427f 100644
--- a/content/child/fileapi/file_system_dispatcher.h
+++ b/content/child/fileapi/file_system_dispatcher.h
@@ -106,13 +106,6 @@ class FileSystemDispatcher : public IPC::Listener {
int64 offset,
int* request_id_out,
const StatusCallback& callback);
- void WriteDeprecated(
- const GURL& path,
- const GURL& blob_url,
- int64 offset,
- int* request_id_out,
- const WriteCallback& success_callback,
- const StatusCallback& error_callback);
void Write(const GURL& path,
const std::string& blob_id,
int64 offset,
diff --git a/content/common/fileapi/file_system_messages.h b/content/common/fileapi/file_system_messages.h
index 727c6de..eb9d1c0 100644
--- a/content/common/fileapi/file_system_messages.h
+++ b/content/common/fileapi/file_system_messages.h
@@ -133,13 +133,6 @@ IPC_MESSAGE_CONTROL2(FileSystemHostMsg_ReadDirectory,
GURL /* path */)
// WebFileWriter::write() message.
-IPC_MESSAGE_CONTROL4(FileSystemHostMsg_WriteDeprecated,
- int /* request id */,
- GURL /* file path */,
- GURL /* blob URL */,
- int64 /* position */)
-
-// WebFileWriter::write() message.
IPC_MESSAGE_CONTROL4(FileSystemHostMsg_Write,
int /* request id */,
GURL /* file path */,