Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(860)

Unified Diff: content/child/fileapi/webfilesystem_impl.cc

Issue 2640963002: LocalFileSystem::deleteFileSystem() is no longer used. (Closed)
Patch Set: remove more Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/child/fileapi/webfilesystem_impl.cc
diff --git a/content/child/fileapi/webfilesystem_impl.cc b/content/child/fileapi/webfilesystem_impl.cc
index e64d06dc98784cac39c7b3f7aa38585ffc193a93..27737286999e0f9eaaf27510806567f38c44b08c 100644
--- a/content/child/fileapi/webfilesystem_impl.cc
+++ b/content/child/fileapi/webfilesystem_impl.cc
@@ -443,23 +443,6 @@ void WebFileSystemImpl::resolveURL(
waitable_results.get());
}
-void WebFileSystemImpl::deleteFileSystem(
- const blink::WebURL& storage_partition,
- blink::WebFileSystemType type,
- WebFileSystemCallbacks callbacks) {
- int callbacks_id = RegisterCallbacks(callbacks);
- scoped_refptr<WaitableCallbackResults> waitable_results =
- MaybeCreateWaitableResults(callbacks, callbacks_id);
- CallDispatcherOnMainThread(
- main_thread_task_runner_, &FileSystemDispatcher::DeleteFileSystem,
- std::make_tuple(
- GURL(storage_partition), static_cast<storage::FileSystemType>(type),
- base::Bind(&StatusCallbackAdapter,
- base::ThreadTaskRunnerHandle::Get(), callbacks_id,
- base::RetainedRef(waitable_results))),
- waitable_results.get());
-}
-
void WebFileSystemImpl::move(
const blink::WebURL& src_path,
const blink::WebURL& dest_path,
« no previous file with comments | « content/child/fileapi/webfilesystem_impl.h ('k') | third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698