| 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/close_file.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/close_file.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 CloseFile::CloseFile(extensions::EventRouter* event_router, | 16 CloseFile::CloseFile(extensions::EventRouter* event_router, |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
| 18 int open_request_id, | 18 int open_request_id, |
| 19 const fileapi::AsyncFileUtil::StatusCallback& callback) | 19 const storage::AsyncFileUtil::StatusCallback& callback) |
| 20 : Operation(event_router, file_system_info), | 20 : Operation(event_router, file_system_info), |
| 21 open_request_id_(open_request_id), | 21 open_request_id_(open_request_id), |
| 22 callback_(callback) { | 22 callback_(callback) { |
| 23 } | 23 } |
| 24 | 24 |
| 25 CloseFile::~CloseFile() { | 25 CloseFile::~CloseFile() { |
| 26 } | 26 } |
| 27 | 27 |
| 28 bool CloseFile::Execute(int request_id) { | 28 bool CloseFile::Execute(int request_id) { |
| 29 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); | 29 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 43 | 43 |
| 44 void CloseFile::OnError(int /* request_id */, | 44 void CloseFile::OnError(int /* request_id */, |
| 45 scoped_ptr<RequestValue> /* result */, | 45 scoped_ptr<RequestValue> /* result */, |
| 46 base::File::Error error) { | 46 base::File::Error error) { |
| 47 callback_.Run(error); | 47 callback_.Run(error); |
| 48 } | 48 } |
| 49 | 49 |
| 50 } // namespace operations | 50 } // namespace operations |
| 51 } // namespace file_system_provider | 51 } // namespace file_system_provider |
| 52 } // namespace chromeos | 52 } // namespace chromeos |
| OLD | NEW |