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
3 // found in the LICENSE file.
5 #include "chrome/browser/chromeos/file_system_provider/operations/add_watcher.h"
9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
13 namespace file_system_provider
{
14 namespace operations
{
16 AddWatcher::AddWatcher(extensions::EventRouter
* event_router
,
17 const ProvidedFileSystemInfo
& file_system_info
,
18 const base::FilePath
& entry_path
,
20 const storage::AsyncFileUtil::StatusCallback
& callback
)
21 : Operation(event_router
, file_system_info
),
22 entry_path_(entry_path
),
23 recursive_(recursive
),
27 AddWatcher::~AddWatcher() {
30 bool AddWatcher::Execute(int request_id
) {
31 using extensions::api::file_system_provider::AddWatcherRequestedOptions
;
33 AddWatcherRequestedOptions options
;
34 options
.file_system_id
= file_system_info_
.file_system_id();
35 options
.request_id
= request_id
;
36 options
.entry_path
= entry_path_
.AsUTF8Unsafe();
37 options
.recursive
= recursive_
;
41 extensions::events::FILE_SYSTEM_PROVIDER_ON_ADD_WATCHER_REQUESTED
,
42 extensions::api::file_system_provider::OnAddWatcherRequested::kEventName
,
43 extensions::api::file_system_provider::OnAddWatcherRequested::Create(
47 void AddWatcher::OnSuccess(int /* request_id */,
48 scoped_ptr
<RequestValue
> /* result */,
50 callback_
.Run(base::File::FILE_OK
);
53 void AddWatcher::OnError(int /* request_id */,
54 scoped_ptr
<RequestValue
> /* result */,
55 base::File::Error error
) {
59 } // namespace operations
60 } // namespace file_system_provider
61 } // namespace chromeos