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

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

Issue 1093383002: [WIP] Provided file system from NACL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved several modules to chromeos folder. Created 5 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
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/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 template <class DestinationPolicy>
17 const ProvidedFileSystemInfo& file_system_info, 17 Truncate<DestinationPolicy>::Truncate(
18 const base::FilePath& file_path, 18 typename DestinationPolicy::EventRouterType* event_router,
19 int64 length, 19 const ProvidedFileSystemInfo& file_system_info,
20 const storage::AsyncFileUtil::StatusCallback& callback) 20 const base::FilePath& file_path,
21 : Operation(event_router, file_system_info), 21 int64 length,
22 const storage::AsyncFileUtil::StatusCallback& callback)
23 : Operation<DestinationPolicy>(event_router, file_system_info),
22 file_path_(file_path), 24 file_path_(file_path),
23 length_(length), 25 length_(length),
24 callback_(callback) { 26 callback_(callback) {
25 } 27 }
26 28
27 Truncate::~Truncate() { 29 template <class DestinationPolicy>
30 Truncate<DestinationPolicy>::~Truncate() {
28 } 31 }
29 32
30 bool Truncate::Execute(int request_id) { 33 template <class DestinationPolicy>
34 bool Truncate<DestinationPolicy>::Execute(int request_id) {
31 using extensions::api::file_system_provider::TruncateRequestedOptions; 35 using extensions::api::file_system_provider::TruncateRequestedOptions;
32 36
33 if (!file_system_info_.writable()) 37 if (!this->file_system_info_.writable())
34 return false; 38 return false;
35 39
36 TruncateRequestedOptions options; 40 TruncateRequestedOptions options;
37 options.file_system_id = file_system_info_.file_system_id(); 41 options.file_system_id = this->file_system_info_.file_system_id();
38 options.request_id = request_id; 42 options.request_id = request_id;
39 options.file_path = file_path_.AsUTF8Unsafe(); 43 options.file_path = file_path_.AsUTF8Unsafe();
40 options.length = length_; 44 options.length = length_;
41 45
42 return SendEvent( 46 return this->SendEvent(
43 request_id, 47 request_id,
44 extensions::api::file_system_provider::OnTruncateRequested::kEventName, 48 extensions::api::file_system_provider::OnTruncateRequested::kEventName,
45 extensions::api::file_system_provider::OnTruncateRequested::Create( 49 extensions::api::file_system_provider::OnTruncateRequested::Create(
46 options)); 50 options));
47 } 51 }
48 52
49 void Truncate::OnSuccess(int /* request_id */, 53 template <class DestinationPolicy>
50 scoped_ptr<RequestValue> /* result */, 54 void Truncate<DestinationPolicy>::OnSuccess(int /* request_id */,
51 bool has_more) { 55 scoped_ptr<RequestValue> /* result */,
56 bool has_more) {
52 callback_.Run(base::File::FILE_OK); 57 callback_.Run(base::File::FILE_OK);
53 } 58 }
54 59
55 void Truncate::OnError(int /* request_id */, 60 template <class DestinationPolicy>
56 scoped_ptr<RequestValue> /* result */, 61 void Truncate<DestinationPolicy>::OnError(int /* request_id */,
57 base::File::Error error) { 62 scoped_ptr<RequestValue> /* result */,
63 base::File::Error error) {
58 callback_.Run(error); 64 callback_.Run(error);
59 } 65 }
60 66
67 FOR_EACH_DESTINATION_SPECIALIZE(Truncate)
68
61 } // namespace operations 69 } // namespace operations
62 } // namespace file_system_provider 70 } // namespace file_system_provider
63 } // namespace chromeos 71 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698