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