diff options
author | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-25 19:12:19 +0000 |
---|---|---|
committer | adamk@chromium.org <adamk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-25 19:12:19 +0000 |
commit | 160d5f66f97488dc1d1c4515150394bdb8c1ef3c (patch) | |
tree | 70fb02819ab94f25b99f1f77765d1cd513e67790 /content/worker | |
parent | b520d4e30f4987dc7bebc5526a5ba1be3831f92a (diff) | |
download | chromium_src-160d5f66f97488dc1d1c4515150394bdb8c1ef3c.zip chromium_src-160d5f66f97488dc1d1c4515150394bdb8c1ef3c.tar.gz chromium_src-160d5f66f97488dc1d1c4515150394bdb8c1ef3c.tar.bz2 |
Remove deprecated overload of openFileSystem for workers.
See https://bugs.webkit.org/show_bug.cgi?id=57062 for the WebKit
side of this change, but note that the changes are safe to
submit in any order.
Review URL: http://codereview.chromium.org/6736012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79435 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/worker')
-rw-r--r-- | content/worker/webworkerclient_proxy.cc | 7 | ||||
-rw-r--r-- | content/worker/webworkerclient_proxy.h | 5 |
2 files changed, 0 insertions, 12 deletions
diff --git a/content/worker/webworkerclient_proxy.cc b/content/worker/webworkerclient_proxy.cc index d3c7334..3f67170 100644 --- a/content/worker/webworkerclient_proxy.cc +++ b/content/worker/webworkerclient_proxy.cc @@ -168,13 +168,6 @@ void WebWorkerClientProxy::openFileSystem( size, create, new WebFileSystemCallbackDispatcher(callbacks)); } -void WebWorkerClientProxy::openFileSystem( - WebKit::WebFileSystem::Type type, - long long size, - WebKit::WebFileSystemCallbacks* callbacks) { - openFileSystem(type, size, true, callbacks); -} - bool WebWorkerClientProxy::Send(IPC::Message* message) { return WorkerThread::current()->Send(message); } diff --git a/content/worker/webworkerclient_proxy.h b/content/worker/webworkerclient_proxy.h index f85caa58..580738c 100644 --- a/content/worker/webworkerclient_proxy.h +++ b/content/worker/webworkerclient_proxy.h @@ -79,11 +79,6 @@ class WebWorkerClientProxy : public WebKit::WebWorkerClient { bool create, WebKit::WebFileSystemCallbacks* callbacks); - // TODO(adamk): Remove this method once it's gone from WebKit. - virtual void openFileSystem(WebKit::WebFileSystem::Type type, - long long size, - WebKit::WebFileSystemCallbacks* callbacks); - void EnsureWorkerContextTerminates(); private: |