| 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" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 return SendEvent( | 43 return SendEvent( |
| 44 request_id, | 44 request_id, |
| 45 extensions::events::FILE_SYSTEM_PROVIDER_ON_CREATE_DIRECTORY_REQUESTED, | 45 extensions::events::FILE_SYSTEM_PROVIDER_ON_CREATE_DIRECTORY_REQUESTED, |
| 46 extensions::api::file_system_provider::OnCreateDirectoryRequested:: | 46 extensions::api::file_system_provider::OnCreateDirectoryRequested:: |
| 47 kEventName, | 47 kEventName, |
| 48 extensions::api::file_system_provider::OnCreateDirectoryRequested::Create( | 48 extensions::api::file_system_provider::OnCreateDirectoryRequested::Create( |
| 49 options)); | 49 options)); |
| 50 } | 50 } |
| 51 | 51 |
| 52 void CreateDirectory::OnSuccess(int /* request_id */, | 52 void CreateDirectory::OnSuccess(int /* request_id */, |
| 53 scoped_ptr<RequestValue> /* result */, | 53 std::unique_ptr<RequestValue> /* result */, |
| 54 bool has_more) { | 54 bool has_more) { |
| 55 callback_.Run(base::File::FILE_OK); | 55 callback_.Run(base::File::FILE_OK); |
| 56 } | 56 } |
| 57 | 57 |
| 58 void CreateDirectory::OnError(int /* request_id */, | 58 void CreateDirectory::OnError(int /* request_id */, |
| 59 scoped_ptr<RequestValue> /* result */, | 59 std::unique_ptr<RequestValue> /* result */, |
| 60 base::File::Error error) { | 60 base::File::Error error) { |
| 61 callback_.Run(error); | 61 callback_.Run(error); |
| 62 } | 62 } |
| 63 | 63 |
| 64 } // namespace operations | 64 } // namespace operations |
| 65 } // namespace file_system_provider | 65 } // namespace file_system_provider |
| 66 } // namespace chromeos | 66 } // namespace chromeos |
| OLD | NEW |