| 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/create_directo
ry.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/create_directo
ry.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 CreateDirectory::CreateDirectory( | 16 CreateDirectory::CreateDirectory( |
| 17 extensions::EventRouter* event_router, | 17 extensions::EventRouter* event_router, |
| 18 const ProvidedFileSystemInfo& file_system_info, | 18 const ProvidedFileSystemInfo& file_system_info, |
| 19 const base::FilePath& directory_path, | 19 const base::FilePath& directory_path, |
| 20 bool exclusive, | |
| 21 bool recursive, | 20 bool recursive, |
| 22 const storage::AsyncFileUtil::StatusCallback& callback) | 21 const storage::AsyncFileUtil::StatusCallback& callback) |
| 23 : Operation(event_router, file_system_info), | 22 : Operation(event_router, file_system_info), |
| 24 directory_path_(directory_path), | 23 directory_path_(directory_path), |
| 25 exclusive_(exclusive), | |
| 26 recursive_(recursive), | 24 recursive_(recursive), |
| 27 callback_(callback) { | 25 callback_(callback) { |
| 28 } | 26 } |
| 29 | 27 |
| 30 CreateDirectory::~CreateDirectory() { | 28 CreateDirectory::~CreateDirectory() { |
| 31 } | 29 } |
| 32 | 30 |
| 33 bool CreateDirectory::Execute(int request_id) { | 31 bool CreateDirectory::Execute(int request_id) { |
| 34 if (!file_system_info_.writable()) | 32 if (!file_system_info_.writable()) |
| 35 return false; | 33 return false; |
| 36 | 34 |
| 37 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); | 35 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); |
| 38 values->SetString("directoryPath", directory_path_.AsUTF8Unsafe()); | 36 values->SetString("directoryPath", directory_path_.AsUTF8Unsafe()); |
| 39 values->SetBoolean("exclusive", exclusive_); | |
| 40 values->SetBoolean("recursive", recursive_); | 37 values->SetBoolean("recursive", recursive_); |
| 41 | 38 |
| 42 return SendEvent(request_id, | 39 return SendEvent(request_id, |
| 43 extensions::api::file_system_provider:: | 40 extensions::api::file_system_provider:: |
| 44 OnCreateDirectoryRequested::kEventName, | 41 OnCreateDirectoryRequested::kEventName, |
| 45 values.Pass()); | 42 values.Pass()); |
| 46 } | 43 } |
| 47 | 44 |
| 48 void CreateDirectory::OnSuccess(int /* request_id */, | 45 void CreateDirectory::OnSuccess(int /* request_id */, |
| 49 scoped_ptr<RequestValue> /* result */, | 46 scoped_ptr<RequestValue> /* result */, |
| 50 bool has_more) { | 47 bool has_more) { |
| 51 callback_.Run(base::File::FILE_OK); | 48 callback_.Run(base::File::FILE_OK); |
| 52 } | 49 } |
| 53 | 50 |
| 54 void CreateDirectory::OnError(int /* request_id */, | 51 void CreateDirectory::OnError(int /* request_id */, |
| 55 scoped_ptr<RequestValue> /* result */, | 52 scoped_ptr<RequestValue> /* result */, |
| 56 base::File::Error error) { | 53 base::File::Error error) { |
| 57 callback_.Run(error); | 54 callback_.Run(error); |
| 58 } | 55 } |
| 59 | 56 |
| 60 } // namespace operations | 57 } // namespace operations |
| 61 } // namespace file_system_provider | 58 } // namespace file_system_provider |
| 62 } // namespace chromeos | 59 } // namespace chromeos |
| OLD | NEW |