Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / chromeos / file_system_provider / operations / create_directory.h
blobed57b8dde747a6d18ca0655da1f4b070cf43c440
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.
5 #ifndef CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_
6 #define CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_
8 #include "base/files/file.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/chromeos/file_system_provider/operations/operation.h"
11 #include "chrome/browser/chromeos/file_system_provider/provided_file_system_info.h"
12 #include "chrome/browser/chromeos/file_system_provider/request_value.h"
13 #include "storage/browser/fileapi/async_file_util.h"
15 namespace base {
16 class FilePath;
17 } // namespace base
19 namespace extensions {
20 class EventRouter;
21 } // namespace extensions
23 namespace chromeos {
24 namespace file_system_provider {
25 namespace operations {
27 // Creates a directory. If |recursive| is set to true, then creates also all
28 // non-existing directories on the path. The operation will fail if the
29 // directory already exists. Created per request.
30 class CreateDirectory : public Operation {
31 public:
32 CreateDirectory(extensions::EventRouter* event_router,
33 const ProvidedFileSystemInfo& file_system_info,
34 const base::FilePath& directory_path,
35 bool recursive,
36 const storage::AsyncFileUtil::StatusCallback& callback);
37 ~CreateDirectory() override;
39 // Operation overrides.
40 bool Execute(int request_id) override;
41 void OnSuccess(int request_id,
42 scoped_ptr<RequestValue> result,
43 bool has_more) override;
44 void OnError(int request_id,
45 scoped_ptr<RequestValue> result,
46 base::File::Error error) override;
48 private:
49 base::FilePath directory_path_;
50 bool recursive_;
51 const storage::AsyncFileUtil::StatusCallback callback_;
53 DISALLOW_COPY_AND_ASSIGN(CreateDirectory);
56 } // namespace operations
57 } // namespace file_system_provider
58 } // namespace chromeos
60 #endif // CHROME_BROWSER_CHROMEOS_FILE_SYSTEM_PROVIDER_OPERATIONS_CREATE_DIRECTORY_H_