summaryrefslogtreecommitdiffstats
path: root/content/child
diff options
context:
space:
mode:
authornhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-06 05:05:36 +0000
committernhiroki@chromium.org <nhiroki@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-06 05:05:36 +0000
commit3be72ead2a1c940050d3c06e2c3b681a0520b8d5 (patch)
tree65f3e950bbb67b228e64bee981f218815c046bf3 /content/child
parent1d30303e925674bd4dd935bc7aec0126638c4509 (diff)
downloadchromium_src-3be72ead2a1c940050d3c06e2c3b681a0520b8d5.zip
chromium_src-3be72ead2a1c940050d3c06e2c3b681a0520b8d5.tar.gz
chromium_src-3be72ead2a1c940050d3c06e2c3b681a0520b8d5.tar.bz2
FileAPI: Remove unused function from CallbackDispatcher
A callsite of this function was removed by pepper-side overhaul. http://crrev.com/234883 BUG=n/a TEST=n/a NOTRY=true Review URL: https://codereview.chromium.org/114033004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243061 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child')
-rw-r--r--content/child/fileapi/file_system_dispatcher.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/content/child/fileapi/file_system_dispatcher.cc b/content/child/fileapi/file_system_dispatcher.cc
index a993288d..3abc6fc 100644
--- a/content/child/fileapi/file_system_dispatcher.cc
+++ b/content/child/fileapi/file_system_dispatcher.cc
@@ -73,13 +73,6 @@ class FileSystemDispatcher::CallbackDispatcher {
dispatcher->error_callback_ = error_callback;
return dispatcher;
}
- static CallbackDispatcher* Create(const OpenFileCallback& callback,
- const StatusCallback& error_callback) {
- CallbackDispatcher* dispatcher = new CallbackDispatcher;
- dispatcher->open_callback_ = callback;
- dispatcher->error_callback_ = error_callback;
- return dispatcher;
- }
~CallbackDispatcher() {}