Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / chromeos / file_system_provider / operations / close_file.cc
blob0cf436b52f044309305d36f3c495b2fc25401dbb
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/close_file.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 CloseFile::CloseFile(extensions::EventRouter* event_router,
17 const ProvidedFileSystemInfo& file_system_info,
18 int open_request_id,
19 const storage::AsyncFileUtil::StatusCallback& callback)
20 : Operation(event_router, file_system_info),
21 open_request_id_(open_request_id),
22 callback_(callback) {
25 CloseFile::~CloseFile() {
28 bool CloseFile::Execute(int request_id) {
29 using extensions::api::file_system_provider::CloseFileRequestedOptions;
31 CloseFileRequestedOptions options;
32 options.file_system_id = file_system_info_.file_system_id();
33 options.request_id = request_id;
34 options.open_request_id = open_request_id_;
36 return SendEvent(
37 request_id,
38 extensions::events::FILE_SYSTEM_PROVIDER_ON_CLOSE_FILE_REQUESTED,
39 extensions::api::file_system_provider::OnCloseFileRequested::kEventName,
40 extensions::api::file_system_provider::OnCloseFileRequested::Create(
41 options));
44 void CloseFile::OnSuccess(int /* request_id */,
45 scoped_ptr<RequestValue> result,
46 bool has_more) {
47 callback_.Run(base::File::FILE_OK);
50 void CloseFile::OnError(int /* request_id */,
51 scoped_ptr<RequestValue> /* result */,
52 base::File::Error error) {
53 callback_.Run(error);
56 } // namespace operations
57 } // namespace file_system_provider
58 } // namespace chromeos