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