| 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..2c4f9f08e964fdeaa5b2f6e316828a5fdcc8c53e 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/abort.cc
|
| @@ -12,45 +12,51 @@
|
| 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 <int source>
|
| +Abort<source>::Abort(typename Operation<source>::EventRouterType* event_router,
|
| + const ProvidedFileSystemInfo& file_system_info,
|
| + int operation_request_id,
|
| + const storage::AsyncFileUtil::StatusCallback& callback)
|
| + : Operation<source>(event_router, file_system_info),
|
| operation_request_id_(operation_request_id),
|
| callback_(callback) {
|
| }
|
|
|
| -Abort::~Abort() {
|
| +template <int source>
|
| +Abort<source>::~Abort() {
|
| }
|
|
|
| -bool Abort::Execute(int request_id) {
|
| +template <int source>
|
| +bool Abort<source>::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 <int source>
|
| +void Abort<source>::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 <int source>
|
| +void Abort<source>::OnError(int /* request_id */,
|
| + scoped_ptr<RequestValue> /* result */,
|
| + base::File::Error error) {
|
| callback_.Run(error);
|
| }
|
|
|
| +template class Abort<Source_Type::extension>;
|
| +template class Abort<Source_Type::plugin>;
|
| +
|
| } // namespace operations
|
| } // namespace file_system_provider
|
| } // namespace chromeos
|
|
|