summaryrefslogtreecommitdiffstats
path: root/content/child/fileapi
diff options
context:
space:
mode:
authortzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-15 07:50:27 +0000
committertzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-15 07:50:27 +0000
commitff28089854cadfc86dee8695391fe4f601188188 (patch)
treec43209b7edce0a88be3484182bd18067d81ce4e9 /content/child/fileapi
parentf3323c796abfac50be4af367fbcfc047b81371cd (diff)
downloadchromium_src-ff28089854cadfc86dee8695391fe4f601188188.zip
chromium_src-ff28089854cadfc86dee8695391fe4f601188188.tar.gz
chromium_src-ff28089854cadfc86dee8695391fe4f601188188.tar.bz2
[FileAPI] Clean up WebFileSystemImpl::openFileSystem
Clean up patch for http://crrev.com/228348 This should be land after blink r159531 roll. Review URL: https://codereview.chromium.org/27124002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/fileapi')
-rw-r--r--content/child/fileapi/webfilesystem_impl.cc8
-rw-r--r--content/child/fileapi/webfilesystem_impl.h8
2 files changed, 0 insertions, 16 deletions
diff --git a/content/child/fileapi/webfilesystem_impl.cc b/content/child/fileapi/webfilesystem_impl.cc
index 3d77df9..1d72fa3 100644
--- a/content/child/fileapi/webfilesystem_impl.cc
+++ b/content/child/fileapi/webfilesystem_impl.cc
@@ -345,14 +345,6 @@ void WebFileSystemImpl::openFileSystem(
make_scoped_ptr(waitable_results));
}
-void WebFileSystemImpl::openFileSystem(
- const WebKit::WebURL& storage_partition,
- WebKit::WebFileSystemType type,
- bool create_unused,
- WebFileSystemCallbacks callbacks) {
- openFileSystem(storage_partition, type, callbacks);
-}
-
void WebFileSystemImpl::resolveURL(
const WebKit::WebURL& filesystem_url,
WebFileSystemCallbacks callbacks) {
diff --git a/content/child/fileapi/webfilesystem_impl.h b/content/child/fileapi/webfilesystem_impl.h
index f16333b..5998efd 100644
--- a/content/child/fileapi/webfilesystem_impl.h
+++ b/content/child/fileapi/webfilesystem_impl.h
@@ -53,14 +53,6 @@ class WebFileSystemImpl
const WebKit::WebURL& storage_partition,
const WebKit::WebFileSystemType type,
WebKit::WebFileSystemCallbacks);
-
- // TODO(tzik): Clean up this version after the interface is changed in Blink.
- virtual void openFileSystem(
- const WebKit::WebURL& storage_partition,
- const WebKit::WebFileSystemType type,
- bool create_unused,
- WebKit::WebFileSystemCallbacks);
-
virtual void resolveURL(
const WebKit::WebURL& filesystem_url,
WebKit::WebFileSystemCallbacks) OVERRIDE;