| 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" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 return SendEvent( | 36 return SendEvent( |
| 37 request_id, | 37 request_id, |
| 38 extensions::events::FILE_SYSTEM_PROVIDER_ON_CLOSE_FILE_REQUESTED, | 38 extensions::events::FILE_SYSTEM_PROVIDER_ON_CLOSE_FILE_REQUESTED, |
| 39 extensions::api::file_system_provider::OnCloseFileRequested::kEventName, | 39 extensions::api::file_system_provider::OnCloseFileRequested::kEventName, |
| 40 extensions::api::file_system_provider::OnCloseFileRequested::Create( | 40 extensions::api::file_system_provider::OnCloseFileRequested::Create( |
| 41 options)); | 41 options)); |
| 42 } | 42 } |
| 43 | 43 |
| 44 void CloseFile::OnSuccess(int /* request_id */, | 44 void CloseFile::OnSuccess(int /* request_id */, |
| 45 scoped_ptr<RequestValue> result, | 45 std::unique_ptr<RequestValue> result, |
| 46 bool has_more) { | 46 bool has_more) { |
| 47 callback_.Run(base::File::FILE_OK); | 47 callback_.Run(base::File::FILE_OK); |
| 48 } | 48 } |
| 49 | 49 |
| 50 void CloseFile::OnError(int /* request_id */, | 50 void CloseFile::OnError(int /* request_id */, |
| 51 scoped_ptr<RequestValue> /* result */, | 51 std::unique_ptr<RequestValue> /* result */, |
| 52 base::File::Error error) { | 52 base::File::Error error) { |
| 53 callback_.Run(error); | 53 callback_.Run(error); |
| 54 } | 54 } |
| 55 | 55 |
| 56 } // namespace operations | 56 } // namespace operations |
| 57 } // namespace file_system_provider | 57 } // namespace file_system_provider |
| 58 } // namespace chromeos | 58 } // namespace chromeos |
| OLD | NEW |