summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authornhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-19 10:23:24 +0000
committernhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-12-19 10:23:24 +0000
commit555c7f21c6e8a4343979dbbe0567b94080e43c5d (patch)
tree82eda79333b43c954558face7e3165a5d5f5d410 /content
parent7ef6e382a455c261c7563876c272fb926b8383c8 (diff)
downloadchromium_src-555c7f21c6e8a4343979dbbe0567b94080e43c5d.zip
chromium_src-555c7f21c6e8a4343979dbbe0567b94080e43c5d.tar.gz
chromium_src-555c7f21c6e8a4343979dbbe0567b94080e43c5d.tar.bz2
FileAPI: Remove WriteDeprecated IPC
This is no longer used. BUG=n/a TEST=n/a TBR=jschuh@chromium.org Review URL: https://codereview.chromium.org/100253005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@241836 0039d316-1c4b-4281-b951-d872f2087c98
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 */,