BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / chromeos / file_system_provider / operations / create_directory.cc
blob5ee997faf02e9e4b89e01c51d2b6394e9718c73f
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 #include "chrome/browser/chromeos/file_system_provider/operations/create_directory.h"
7 #include <string>
9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
12 namespace chromeos {
13 namespace file_system_provider {
14 namespace operations {
16 CreateDirectory::CreateDirectory(
17 extensions::EventRouter* event_router,
18 const ProvidedFileSystemInfo& file_system_info,
19 const base::FilePath& directory_path,
20 bool recursive,
21 const storage::AsyncFileUtil::StatusCallback& callback)
22 : Operation(event_router, file_system_info),
23 directory_path_(directory_path),
24 recursive_(recursive),
25 callback_(callback) {
28 CreateDirectory::~CreateDirectory() {
31 bool CreateDirectory::Execute(int request_id) {
32 using extensions::api::file_system_provider::CreateDirectoryRequestedOptions;
34 if (!file_system_info_.writable())
35 return false;
37 CreateDirectoryRequestedOptions options;
38 options.file_system_id = file_system_info_.file_system_id();
39 options.request_id = request_id;
40 options.directory_path = directory_path_.AsUTF8Unsafe();
41 options.recursive = recursive_;
43 return SendEvent(
44 request_id,
45 extensions::events::FILE_SYSTEM_PROVIDER_ON_CREATE_DIRECTORY_REQUESTED,
46 extensions::api::file_system_provider::OnCreateDirectoryRequested::
47 kEventName,
48 extensions::api::file_system_provider::OnCreateDirectoryRequested::Create(
49 options));
52 void CreateDirectory::OnSuccess(int /* request_id */,
53 scoped_ptr<RequestValue> /* result */,
54 bool has_more) {
55 callback_.Run(base::File::FILE_OK);
58 void CreateDirectory::OnError(int /* request_id */,
59 scoped_ptr<RequestValue> /* result */,
60 base::File::Error error) {
61 callback_.Run(error);
64 } // namespace operations
65 } // namespace file_system_provider
66 } // namespace chromeos