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

Unified Diff: webkit/fileapi/remove_operation_delegate.cc

Issue 15859007: Move browser-specific FileAPI code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dump_file_system build fix Created 7 years, 7 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
« no previous file with comments | « webkit/fileapi/remove_operation_delegate.h ('k') | webkit/fileapi/sandbox_file_system_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/remove_operation_delegate.cc
diff --git a/webkit/fileapi/remove_operation_delegate.cc b/webkit/fileapi/remove_operation_delegate.cc
deleted file mode 100644
index 9786cf443b59b0aaabeb705632794633995058db..0000000000000000000000000000000000000000
--- a/webkit/fileapi/remove_operation_delegate.cc
+++ /dev/null
@@ -1,87 +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/fileapi/remove_operation_delegate.h"
-
-#include "base/bind.h"
-#include "webkit/browser/fileapi/local_file_system_operation.h"
-#include "webkit/fileapi/file_system_context.h"
-#include "webkit/fileapi/file_system_operation_context.h"
-
-namespace fileapi {
-
-RemoveOperationDelegate::RemoveOperationDelegate(
- FileSystemContext* file_system_context,
- LocalFileSystemOperation* operation,
- const FileSystemURL& url,
- const StatusCallback& callback)
- : RecursiveOperationDelegate(file_system_context, operation),
- url_(url),
- callback_(callback) {
-}
-
-RemoveOperationDelegate::~RemoveOperationDelegate() {}
-
-void RemoveOperationDelegate::Run() {
- NewNestedOperation()->RemoveFile(url_, base::Bind(
- &RemoveOperationDelegate::DidTryRemoveFile, AsWeakPtr()));
-}
-
-void RemoveOperationDelegate::RunRecursively() {
- StartRecursiveOperation(
- url_,
- base::Bind(&RemoveOperationDelegate::RemoveNextDirectory, AsWeakPtr()));
-}
-
-void RemoveOperationDelegate::ProcessFile(const FileSystemURL& url,
- const StatusCallback& callback) {
- if (to_remove_directories_.size() == 1u &&
- to_remove_directories_.top() == url) {
- // We seem to have been re-directed from ProcessDirectory.
- to_remove_directories_.pop();
- }
- NewNestedOperation()->RemoveFile(url, base::Bind(
- &RemoveOperationDelegate::DidRemoveFile, AsWeakPtr(), callback));
-}
-
-void RemoveOperationDelegate::ProcessDirectory(const FileSystemURL& url,
- const StatusCallback& callback) {
- to_remove_directories_.push(url);
- callback.Run(base::PLATFORM_FILE_OK);
-}
-
-void RemoveOperationDelegate::DidTryRemoveFile(
- base::PlatformFileError error) {
- if (error == base::PLATFORM_FILE_OK ||
- error != base::PLATFORM_FILE_ERROR_NOT_A_FILE) {
- callback_.Run(error);
- return;
- }
- NewNestedOperation()->RemoveDirectory(url_, callback_);
-}
-
-void RemoveOperationDelegate::DidRemoveFile(const StatusCallback& callback,
- base::PlatformFileError error) {
- if (error == base::PLATFORM_FILE_ERROR_NOT_FOUND) {
- callback.Run(base::PLATFORM_FILE_OK);
- return;
- }
- callback.Run(error);
-}
-
-void RemoveOperationDelegate::RemoveNextDirectory(
- base::PlatformFileError error) {
- if (error != base::PLATFORM_FILE_OK ||
- to_remove_directories_.empty()) {
- callback_.Run(error);
- return;
- }
- FileSystemURL url = to_remove_directories_.top();
- to_remove_directories_.pop();
- NewNestedOperation()->RemoveDirectory(url, base::Bind(
- &RemoveOperationDelegate::RemoveNextDirectory,
- AsWeakPtr()));
-}
-
-} // namespace fileapi
« no previous file with comments | « webkit/fileapi/remove_operation_delegate.h ('k') | webkit/fileapi/sandbox_file_system_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698