Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/truncate.cc

Issue 417983002: [fsp] Add support for truncating files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/create_file.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 CreateFile::CreateFile(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 const fileapi::AsyncFileUtil::StatusCallback& callback) 19 int64 length,
20 const fileapi::AsyncFileUtil::StatusCallback& callback)
20 : Operation(event_router, file_system_info), 21 : Operation(event_router, file_system_info),
21 file_path_(file_path), 22 file_path_(file_path),
23 length_(length),
22 callback_(callback) { 24 callback_(callback) {
23 } 25 }
24 26
25 CreateFile::~CreateFile() { 27 Truncate::~Truncate() {
26 } 28 }
27 29
28 bool CreateFile::Execute(int request_id) { 30 bool Truncate::Execute(int request_id) {
29 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue); 31 scoped_ptr<base::DictionaryValue> values(new base::DictionaryValue);
30 values->SetString("filePath", file_path_.AsUTF8Unsafe()); 32 values->SetString("filePath", file_path_.AsUTF8Unsafe());
33 values->SetDouble("length", length_);
31 34
32 return SendEvent( 35 return SendEvent(
33 request_id, 36 request_id,
34 extensions::api::file_system_provider::OnCreateFileRequested::kEventName, 37 extensions::api::file_system_provider::OnTruncateRequested::kEventName,
35 values.Pass()); 38 values.Pass());
36 } 39 }
37 40
38 void CreateFile::OnSuccess(int /* request_id */, 41 void Truncate::OnSuccess(int /* request_id */,
39 scoped_ptr<RequestValue> /* result */, 42 scoped_ptr<RequestValue> /* result */,
40 bool has_more) { 43 bool has_more) {
41 callback_.Run(base::File::FILE_OK); 44 callback_.Run(base::File::FILE_OK);
42 } 45 }
43 46
44 void CreateFile::OnError(int /* request_id */, 47 void Truncate::OnError(int /* request_id */,
45 scoped_ptr<RequestValue> /* result */, 48 scoped_ptr<RequestValue> /* result */,
46 base::File::Error error) { 49 base::File::Error error) {
47 callback_.Run(error); 50 callback_.Run(error);
48 } 51 }
49 52
50 } // namespace operations 53 } // namespace operations
51 } // namespace file_system_provider 54 } // namespace file_system_provider
52 } // namespace chromeos 55 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698