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

Side by Side Diff: chrome/browser/chromeos/file_system_provider/operations/create_file.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/create_file.h" 5 #include "chrome/browser/chromeos/file_system_provider/operations/create_file.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 template <class DestinationPolicy>
17 const ProvidedFileSystemInfo& file_system_info, 17 CreateFile<DestinationPolicy>::CreateFile(
18 const base::FilePath& file_path, 18 typename DestinationPolicy::EventRouterType* event_router,
19 const storage::AsyncFileUtil::StatusCallback& callback) 19 const ProvidedFileSystemInfo& file_system_info,
20 : Operation(event_router, file_system_info), 20 const base::FilePath& file_path,
21 const storage::AsyncFileUtil::StatusCallback& callback)
22 : Operation<DestinationPolicy>(event_router, file_system_info),
21 file_path_(file_path), 23 file_path_(file_path),
22 callback_(callback) { 24 callback_(callback) {
23 } 25 }
24 26
25 CreateFile::~CreateFile() { 27 template <class DestinationPolicy>
28 CreateFile<DestinationPolicy>::~CreateFile() {
26 } 29 }
27 30
28 bool CreateFile::Execute(int request_id) { 31 template <class DestinationPolicy>
32 bool CreateFile<DestinationPolicy>::Execute(int request_id) {
29 using extensions::api::file_system_provider::CreateFileRequestedOptions; 33 using extensions::api::file_system_provider::CreateFileRequestedOptions;
30 34
31 if (!file_system_info_.writable()) 35 if (!this->file_system_info_.writable())
32 return false; 36 return false;
33 37
34 CreateFileRequestedOptions options; 38 CreateFileRequestedOptions options;
35 options.file_system_id = file_system_info_.file_system_id(); 39 options.file_system_id = this->file_system_info_.file_system_id();
36 options.request_id = request_id; 40 options.request_id = request_id;
37 options.file_path = file_path_.AsUTF8Unsafe(); 41 options.file_path = file_path_.AsUTF8Unsafe();
38 42
39 return SendEvent( 43 return this->SendEvent(
40 request_id, 44 request_id,
41 extensions::api::file_system_provider::OnCreateFileRequested::kEventName, 45 extensions::api::file_system_provider::OnCreateFileRequested::kEventName,
42 extensions::api::file_system_provider::OnCreateFileRequested::Create( 46 extensions::api::file_system_provider::OnCreateFileRequested::Create(
43 options)); 47 options));
44 } 48 }
45 49
46 void CreateFile::OnSuccess(int /* request_id */, 50 template <class DestinationPolicy>
47 scoped_ptr<RequestValue> /* result */, 51 void CreateFile<DestinationPolicy>::OnSuccess(int /* request_id */,
48 bool has_more) { 52 scoped_ptr<RequestValue> /* result */,
53 bool has_more) {
49 callback_.Run(base::File::FILE_OK); 54 callback_.Run(base::File::FILE_OK);
50 } 55 }
51 56
52 void CreateFile::OnError(int /* request_id */, 57 template <class DestinationPolicy>
53 scoped_ptr<RequestValue> /* result */, 58 void CreateFile<DestinationPolicy>::OnError(int /* request_id */,
54 base::File::Error error) { 59 scoped_ptr<RequestValue> /* result */,
60 base::File::Error error) {
55 callback_.Run(error); 61 callback_.Run(error);
56 } 62 }
57 63
64 FOR_EACH_DESTINATION_SPECIALIZE(CreateFile)
65
58 } // namespace operations 66 } // namespace operations
59 } // namespace file_system_provider 67 } // namespace file_system_provider
60 } // namespace chromeos 68 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698