| 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/truncate.h" | 5 #include "chrome/browser/chromeos/file_system_provider/operations/truncate.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 Truncate::Truncate(extensions::EventRouter* event_router, | 16 Truncate::Truncate(extensions::EventRouter* event_router, |
| 17 const ProvidedFileSystemInfo& file_system_info, | 17 const ProvidedFileSystemInfo& file_system_info, |
| 18 const base::FilePath& file_path, | 18 const base::FilePath& file_path, |
| 19 int64 length, | 19 int64_t length, |
| 20 const storage::AsyncFileUtil::StatusCallback& callback) | 20 const storage::AsyncFileUtil::StatusCallback& callback) |
| 21 : Operation(event_router, file_system_info), | 21 : Operation(event_router, file_system_info), |
| 22 file_path_(file_path), | 22 file_path_(file_path), |
| 23 length_(length), | 23 length_(length), |
| 24 callback_(callback) { | 24 callback_(callback) {} |
| 25 } | |
| 26 | 25 |
| 27 Truncate::~Truncate() { | 26 Truncate::~Truncate() { |
| 28 } | 27 } |
| 29 | 28 |
| 30 bool Truncate::Execute(int request_id) { | 29 bool Truncate::Execute(int request_id) { |
| 31 using extensions::api::file_system_provider::TruncateRequestedOptions; | 30 using extensions::api::file_system_provider::TruncateRequestedOptions; |
| 32 | 31 |
| 33 if (!file_system_info_.writable()) | 32 if (!file_system_info_.writable()) |
| 34 return false; | 33 return false; |
| 35 | 34 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 55 | 54 |
| 56 void Truncate::OnError(int /* request_id */, | 55 void Truncate::OnError(int /* request_id */, |
| 57 scoped_ptr<RequestValue> /* result */, | 56 scoped_ptr<RequestValue> /* result */, |
| 58 base::File::Error error) { | 57 base::File::Error error) { |
| 59 callback_.Run(error); | 58 callback_.Run(error); |
| 60 } | 59 } |
| 61 | 60 |
| 62 } // namespace operations | 61 } // namespace operations |
| 63 } // namespace file_system_provider | 62 } // namespace file_system_provider |
| 64 } // namespace chromeos | 63 } // namespace chromeos |
| OLD | NEW |