| 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/abort.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/abort.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 template <int source> |
| 16 Abort::Abort(extensions::EventRouter* event_router, | 16 Abort<source>::Abort(typename Operation<source>::EventRouterType* event_router, |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
| 18 int operation_request_id, | 18 int operation_request_id, |
| 19 const storage::AsyncFileUtil::StatusCallback& callback) | 19 const storage::AsyncFileUtil::StatusCallback& callback) |
| 20 : Operation(event_router, file_system_info), | 20 : Operation<source>(event_router, file_system_info), |
| 21 operation_request_id_(operation_request_id), | 21 operation_request_id_(operation_request_id), |
| 22 callback_(callback) { | 22 callback_(callback) { |
| 23 } | 23 } |
| 24 | 24 |
| 25 Abort::~Abort() { | 25 template <int source> |
| 26 Abort<source>::~Abort() { |
| 26 } | 27 } |
| 27 | 28 |
| 28 bool Abort::Execute(int request_id) { | 29 template <int source> |
| 30 bool Abort<source>::Execute(int request_id) { |
| 29 using extensions::api::file_system_provider::AbortRequestedOptions; | 31 using extensions::api::file_system_provider::AbortRequestedOptions; |
| 30 | 32 |
| 31 AbortRequestedOptions options; | 33 AbortRequestedOptions options; |
| 32 options.file_system_id = file_system_info_.file_system_id(); | 34 options.file_system_id = this->file_system_info_.file_system_id(); |
| 33 options.request_id = request_id; | 35 options.request_id = request_id; |
| 34 options.operation_request_id = operation_request_id_; | 36 options.operation_request_id = operation_request_id_; |
| 35 | 37 |
| 36 return SendEvent( | 38 return this->SendEvent( |
| 37 request_id, | 39 request_id, |
| 38 extensions::api::file_system_provider::OnAbortRequested::kEventName, | 40 extensions::api::file_system_provider::OnAbortRequested::kEventName, |
| 39 extensions::api::file_system_provider::OnAbortRequested::Create(options)); | 41 extensions::api::file_system_provider::OnAbortRequested::Create(options)); |
| 40 } | 42 } |
| 41 | 43 |
| 42 void Abort::OnSuccess(int /* request_id */, | 44 template <int source> |
| 43 scoped_ptr<RequestValue> /* result */, | 45 void Abort<source>::OnSuccess(int /* request_id */, |
| 44 bool has_more) { | 46 scoped_ptr<RequestValue> /* result */, |
| 47 bool has_more) { |
| 45 callback_.Run(base::File::FILE_OK); | 48 callback_.Run(base::File::FILE_OK); |
| 46 } | 49 } |
| 47 | 50 template <int source> |
| 48 void Abort::OnError(int /* request_id */, | 51 void Abort<source>::OnError(int /* request_id */, |
| 49 scoped_ptr<RequestValue> /* result */, | 52 scoped_ptr<RequestValue> /* result */, |
| 50 base::File::Error error) { | 53 base::File::Error error) { |
| 51 callback_.Run(error); | 54 callback_.Run(error); |
| 52 } | 55 } |
| 53 | 56 |
| 57 template class Abort<Source_Type::extension>; |
| 58 template class Abort<Source_Type::plugin>; |
| 59 |
| 54 } // namespace operations | 60 } // namespace operations |
| 55 } // namespace file_system_provider | 61 } // namespace file_system_provider |
| 56 } // namespace chromeos | 62 } // namespace chromeos |
| OLD | NEW |