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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/delete_entry.cc

Issue 375543002: [fsp] Add support for deleting entries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased + cleaned up. Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/chromeos/file_system_provider/operations/delete_entry.h "
6
7 #include <string>
8
9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
11
12 namespace chromeos {
13 namespace file_system_provider {
14 namespace operations {
15
16 DeleteEntry::DeleteEntry(extensions::EventRouter* event_router,
17 const ProvidedFileSystemInfo& file_system_info,
18 const base::FilePath& entry_path,
19 bool recursive,
20 const fileapi::AsyncFileUtil::StatusCallback& callback)
21 : Operation(event_router, file_system_info),
22 entry_path_(entry_path),
23 recursive_(recursive),
24 callback_(callback) {
25 }
26
27 DeleteEntry::~DeleteEntry() {
28 }
29
30 bool DeleteEntry::Execute(int request_id) {
31 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue);
32 values->SetString("entryPath", entry_path_.AsUTF8Unsafe());
33 values->SetBoolean("recursive", recursive_);
34
35 return SendEvent(
36 request_id,
37 extensions::api::file_system_provider::OnDeleteEntryRequested::kEventName,
38 values.Pass());
39 }
40
41 void DeleteEntry::OnSuccess(int /* request_id */,
42 scoped_ptr<RequestValue> /* result */,
43 bool has_more) {
44 callback_.Run(base::File::FILE_OK);
45 }
46
47 void DeleteEntry::OnError(int /* request_id */,
48 scoped_ptr<RequestValue> /* result */,
49 base::File::Error error) {
50 callback_.Run(error);
51 }
52
53 } // namespace operations
54 } // namespace file_system_provider
55 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698