| Index: chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/abort.cc b/chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| index 53e9bbfe28d02f6880fc497eb0c8ac13464a3be1..238210eb09b3a5d88f4f5ae0bfc10b1dc412a743 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| @@ -12,45 +12,52 @@
|
| namespace chromeos {
|
| namespace file_system_provider {
|
| namespace operations {
|
| -
|
| -Abort::Abort(extensions::EventRouter* event_router,
|
| - const ProvidedFileSystemInfo& file_system_info,
|
| - int operation_request_id,
|
| - const storage::AsyncFileUtil::StatusCallback& callback)
|
| - : Operation(event_router, file_system_info),
|
| +template <class DestinationPolicy>
|
| +Abort<DestinationPolicy>::Abort(
|
| + typename DestinationPolicy::EventRouterType*
|
| + event_router,
|
| + const ProvidedFileSystemInfo& file_system_info,
|
| + int operation_request_id,
|
| + const storage::AsyncFileUtil::StatusCallback& callback)
|
| + : Operation<DestinationPolicy>(event_router, file_system_info),
|
| operation_request_id_(operation_request_id),
|
| callback_(callback) {
|
| }
|
|
|
| -Abort::~Abort() {
|
| +template <class DestinationPolicy>
|
| +Abort<DestinationPolicy>::~Abort() {
|
| }
|
|
|
| -bool Abort::Execute(int request_id) {
|
| +template <class DestinationPolicy>
|
| +bool Abort<DestinationPolicy>::Execute(int request_id) {
|
| using extensions::api::file_system_provider::AbortRequestedOptions;
|
|
|
| AbortRequestedOptions options;
|
| - options.file_system_id = file_system_info_.file_system_id();
|
| + options.file_system_id = this->file_system_info_.file_system_id();
|
| options.request_id = request_id;
|
| options.operation_request_id = operation_request_id_;
|
|
|
| - return SendEvent(
|
| + return this->SendEvent(
|
| request_id,
|
| extensions::api::file_system_provider::OnAbortRequested::kEventName,
|
| extensions::api::file_system_provider::OnAbortRequested::Create(options));
|
| }
|
|
|
| -void Abort::OnSuccess(int /* request_id */,
|
| - scoped_ptr<RequestValue> /* result */,
|
| - bool has_more) {
|
| +template <class DestinationPolicy>
|
| +void Abort<DestinationPolicy>::OnSuccess(int /* request_id */,
|
| + scoped_ptr<RequestValue> /* result */,
|
| + bool has_more) {
|
| callback_.Run(base::File::FILE_OK);
|
| }
|
| -
|
| -void Abort::OnError(int /* request_id */,
|
| - scoped_ptr<RequestValue> /* result */,
|
| - base::File::Error error) {
|
| +template <class DestinationPolicy>
|
| +void Abort<DestinationPolicy>::OnError(int /* request_id */,
|
| + scoped_ptr<RequestValue> /* result */,
|
| + base::File::Error error) {
|
| callback_.Run(error);
|
| }
|
|
|
| +FOR_EACH_DESTINATION_SPECIALIZE(Abort)
|
| +
|
| } // namespace operations
|
| } // namespace file_system_provider
|
| } // namespace chromeos
|
|
|