Roll src/third_party/WebKit eac3800:0237a66 (svn 202606:202607)
[chromium-blink-merge.git] / chrome / browser / chromeos / file_system_provider / operations / remove_watcher.cc
blobbe79404c6c708f9abb9a96d095047594fed7ec1f
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/remove_watcher.h"
7 #include <string>
9 #include "chrome/common/extensions/api/file_system_provider.h"
10 #include "chrome/common/extensions/api/file_system_provider_internal.h"
12 namespace chromeos {
13 namespace file_system_provider {
14 namespace operations {
16 RemoveWatcher::RemoveWatcher(
17 extensions::EventRouter* event_router,
18 const ProvidedFileSystemInfo& file_system_info,
19 const base::FilePath& entry_path,
20 bool recursive,
21 const storage::AsyncFileUtil::StatusCallback& callback)
22 : Operation(event_router, file_system_info),
23 entry_path_(entry_path),
24 recursive_(recursive),
25 callback_(callback) {
28 RemoveWatcher::~RemoveWatcher() {
31 bool RemoveWatcher::Execute(int request_id) {
32 using extensions::api::file_system_provider::RemoveWatcherRequestedOptions;
34 RemoveWatcherRequestedOptions options;
35 options.file_system_id = file_system_info_.file_system_id();
36 options.request_id = request_id;
37 options.entry_path = entry_path_.AsUTF8Unsafe();
38 options.recursive = recursive_;
40 return SendEvent(
41 request_id,
42 extensions::events::FILE_SYSTEM_PROVIDER_ON_REMOVE_WATCHER_REQUESTED,
43 extensions::api::file_system_provider::OnRemoveWatcherRequested::
44 kEventName,
45 extensions::api::file_system_provider::OnRemoveWatcherRequested::Create(
46 options));
49 void RemoveWatcher::OnSuccess(int /* request_id */,
50 scoped_ptr<RequestValue> /* result */,
51 bool has_more) {
52 callback_.Run(base::File::FILE_OK);
55 void RemoveWatcher::OnError(int /* request_id */,
56 scoped_ptr<RequestValue> /* result */,
57 base::File::Error error) {
58 callback_.Run(error);
61 } // namespace operations
62 } // namespace file_system_provider
63 } // namespace chromeos