| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/chromeos/file_system_provider/operations/delete_entry.h
" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/delete_entry.h
" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "chrome/common/extensions/api/file_system_provider.h" | 9 #include "chrome/common/extensions/api/file_system_provider.h" |
| 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" | 10 #include "chrome/common/extensions/api/file_system_provider_internal.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 namespace file_system_provider { | 13 namespace file_system_provider { |
| 14 namespace operations { | 14 namespace operations { |
| 15 | 15 |
| 16 DeleteEntry::DeleteEntry(extensions::EventRouter* event_router, | 16 DeleteEntry::DeleteEntry(extensions::EventRouter* event_router, |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
| 18 const base::FilePath& entry_path, | 18 const base::FilePath& entry_path, |
| 19 bool recursive, | 19 bool recursive, |
| 20 const fileapi::AsyncFileUtil::StatusCallback& callback) | 20 const storage::AsyncFileUtil::StatusCallback& callback) |
| 21 : Operation(event_router, file_system_info), | 21 : Operation(event_router, file_system_info), |
| 22 entry_path_(entry_path), | 22 entry_path_(entry_path), |
| 23 recursive_(recursive), | 23 recursive_(recursive), |
| 24 callback_(callback) { | 24 callback_(callback) { |
| 25 } | 25 } |
| 26 | 26 |
| 27 DeleteEntry::~DeleteEntry() { | 27 DeleteEntry::~DeleteEntry() { |
| 28 } | 28 } |
| 29 | 29 |
| 30 bool DeleteEntry::Execute(int request_id) { | 30 bool DeleteEntry::Execute(int request_id) { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 void DeleteEntry::OnError(int /* request_id */, | 50 void DeleteEntry::OnError(int /* request_id */, |
| 51 scoped_ptr<RequestValue> /* result */, | 51 scoped_ptr<RequestValue> /* result */, |
| 52 base::File::Error error) { | 52 base::File::Error error) { |
| 53 callback_.Run(error); | 53 callback_.Run(error); |
| 54 } | 54 } |
| 55 | 55 |
| 56 } // namespace operations | 56 } // namespace operations |
| 57 } // namespace file_system_provider | 57 } // namespace file_system_provider |
| 58 } // namespace chromeos | 58 } // namespace chromeos |
| OLD | NEW |