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

Unified Diff: webkit/browser/fileapi/remove_operation_delegate.cc

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android build Created 6 years, 3 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: webkit/browser/fileapi/remove_operation_delegate.cc
diff --git a/webkit/browser/fileapi/remove_operation_delegate.cc b/webkit/browser/fileapi/remove_operation_delegate.cc
deleted file mode 100644
index 8e645cd44ecde6fa8666e3412a124fc88f1413b4..0000000000000000000000000000000000000000
--- a/webkit/browser/fileapi/remove_operation_delegate.cc
+++ /dev/null
@@ -1,82 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/browser/fileapi/remove_operation_delegate.h"
-
-#include "base/bind.h"
-#include "webkit/browser/fileapi/file_system_context.h"
-#include "webkit/browser/fileapi/file_system_operation_runner.h"
-
-namespace storage {
-
-RemoveOperationDelegate::RemoveOperationDelegate(
- FileSystemContext* file_system_context,
- const FileSystemURL& url,
- const StatusCallback& callback)
- : RecursiveOperationDelegate(file_system_context),
- url_(url),
- callback_(callback),
- weak_factory_(this) {
-}
-
-RemoveOperationDelegate::~RemoveOperationDelegate() {}
-
-void RemoveOperationDelegate::Run() {
- operation_runner()->RemoveFile(url_, base::Bind(
- &RemoveOperationDelegate::DidTryRemoveFile, weak_factory_.GetWeakPtr()));
-}
-
-void RemoveOperationDelegate::RunRecursively() {
- StartRecursiveOperation(url_, callback_);
-}
-
-void RemoveOperationDelegate::ProcessFile(const FileSystemURL& url,
- const StatusCallback& callback) {
- operation_runner()->RemoveFile(
- url,
- base::Bind(&RemoveOperationDelegate::DidRemoveFile,
- weak_factory_.GetWeakPtr(), callback));
-}
-
-void RemoveOperationDelegate::ProcessDirectory(const FileSystemURL& url,
- const StatusCallback& callback) {
- callback.Run(base::File::FILE_OK);
-}
-
-void RemoveOperationDelegate::PostProcessDirectory(
- const FileSystemURL& url, const StatusCallback& callback) {
- operation_runner()->RemoveDirectory(url, callback);
-}
-
-void RemoveOperationDelegate::DidTryRemoveFile(base::File::Error error) {
- if (error != base::File::FILE_ERROR_NOT_A_FILE &&
- error != base::File::FILE_ERROR_SECURITY) {
- callback_.Run(error);
- return;
- }
- operation_runner()->RemoveDirectory(
- url_,
- base::Bind(&RemoveOperationDelegate::DidTryRemoveDirectory,
- weak_factory_.GetWeakPtr(), error));
-}
-
-void RemoveOperationDelegate::DidTryRemoveDirectory(
- base::File::Error remove_file_error,
- base::File::Error remove_directory_error) {
- callback_.Run(
- remove_directory_error == base::File::FILE_ERROR_NOT_A_DIRECTORY ?
- remove_file_error :
- remove_directory_error);
-}
-
-void RemoveOperationDelegate::DidRemoveFile(const StatusCallback& callback,
- base::File::Error error) {
- if (error == base::File::FILE_ERROR_NOT_FOUND) {
- callback.Run(base::File::FILE_OK);
- return;
- }
- callback.Run(error);
-}
-
-} // namespace storage
« no previous file with comments | « webkit/browser/fileapi/remove_operation_delegate.h ('k') | webkit/browser/fileapi/sandbox_directory_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698