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

Side by Side Diff: Source/modules/filesystem/SyncCallbackHelper.h

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Improve some type names Created 6 years, 9 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 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 17 matching lines...) Expand all
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31 31
32 #ifndef SyncCallbackHelper_h 32 #ifndef SyncCallbackHelper_h
33 #define SyncCallbackHelper_h 33 #define SyncCallbackHelper_h
34 34
35 #include "bindings/v8/ExceptionState.h" 35 #include "bindings/v8/ExceptionState.h"
36 #include "core/fileapi/FileError.h" 36 #include "core/fileapi/FileError.h"
37 #include "core/html/VoidCallback.h" 37 #include "core/html/VoidCallback.h"
38 #include "heap/Handle.h"
38 #include "modules/filesystem/DirectoryEntry.h" 39 #include "modules/filesystem/DirectoryEntry.h"
39 #include "modules/filesystem/DirectoryReaderSync.h" 40 #include "modules/filesystem/DirectoryReaderSync.h"
40 #include "modules/filesystem/EntriesCallback.h" 41 #include "modules/filesystem/EntriesCallback.h"
41 #include "modules/filesystem/EntryCallback.h" 42 #include "modules/filesystem/EntryCallback.h"
42 #include "modules/filesystem/EntrySync.h" 43 #include "modules/filesystem/EntrySync.h"
43 #include "modules/filesystem/ErrorCallback.h" 44 #include "modules/filesystem/ErrorCallback.h"
44 #include "modules/filesystem/FileEntry.h" 45 #include "modules/filesystem/FileEntry.h"
45 #include "modules/filesystem/FileSystemCallback.h" 46 #include "modules/filesystem/FileSystemCallback.h"
46 #include "modules/filesystem/MetadataCallback.h" 47 #include "modules/filesystem/MetadataCallback.h"
47 #include "wtf/PassRefPtr.h" 48 #include "wtf/PassRefPtr.h"
48 #include "wtf/RefCounted.h" 49 #include "wtf/RefCounted.h"
49 50
50 namespace WebCore { 51 namespace WebCore {
51 52
52 template <typename ResultType, typename CallbackArg> 53 template <typename ResultType, typename CallbackArg>
53 struct HelperResultType { 54 struct HelperResultType {
haraken 2014/03/10 01:55:26 Shall we add STACK_ALLOCATED or DISALLOW_ALLOCATIO
sof 2014/03/10 10:01:23 Done (DISALLOW_ALLOCATION.)
54 typedef PassRefPtr<ResultType> ReturnType; 55 typedef PassRefPtrWillBeRawPtr<ResultType> ReturnType;
55 typedef RefPtr<ResultType> StorageType; 56 typedef RefPtrWillBeRawPtr<ResultType> StorageType;
56 57
57 static ReturnType createFromCallbackArg(CallbackArg argument) 58 static ReturnType createFromCallbackArg(CallbackArg argument)
58 { 59 {
59 return ResultType::create(argument); 60 return ResultType::create(argument);
60 } 61 }
61 }; 62 };
62 63
63 template <> 64 template <>
64 struct HelperResultType<EntrySyncVector, const EntryVector&> { 65 struct HelperResultType<EntrySyncHeapVector, const EntryHeapVector&> {
haraken 2014/03/10 01:55:26 Ditto.
65 typedef EntrySyncVector ReturnType; 66 typedef EntrySyncHeapVector ReturnType;
66 typedef EntrySyncVector StorageType; 67 typedef EntrySyncHeapVector StorageType;
67 68
68 static EntrySyncVector createFromCallbackArg(const EntryVector& entries) 69 static EntrySyncHeapVector createFromCallbackArg(const EntryHeapVector& entr ies)
69 { 70 {
70 EntrySyncVector result; 71 EntrySyncHeapVector result;
71 size_t entryCount = entries.size(); 72 size_t entryCount = entries.size();
72 result.reserveInitialCapacity(entryCount); 73 result.reserveInitialCapacity(entryCount);
73 for (size_t i = 0; i < entryCount; ++i) 74 for (size_t i = 0; i < entryCount; ++i)
74 result.uncheckedAppend(EntrySync::create(entries[i].get())); 75 result.uncheckedAppend(EntrySync::create(entries[i].get()));
75 return result; 76 return result;
76 } 77 }
77 }; 78 };
78 79
79 // A helper template for FileSystemSync implementation. 80 // A helper template for FileSystemSync implementation.
80 template <typename SuccessCallback, typename CallbackArg, typename ResultType> 81 template <typename SuccessCallback, typename CallbackArg, typename ResultType>
81 class SyncCallbackHelper { 82 class SyncCallbackHelper {
82 WTF_MAKE_NONCOPYABLE(SyncCallbackHelper); 83 WTF_MAKE_NONCOPYABLE(SyncCallbackHelper);
84 STACK_ALLOCATED();
83 public: 85 public:
84 typedef SyncCallbackHelper<SuccessCallback, CallbackArg, ResultType> HelperT ype; 86 typedef SyncCallbackHelper<SuccessCallback, CallbackArg, ResultType> HelperT ype;
85 typedef HelperResultType<ResultType, CallbackArg> ResultTypeTrait; 87 typedef HelperResultType<ResultType, CallbackArg> ResultTypeTrait;
86 typedef typename ResultTypeTrait::StorageType ResultStorageType; 88 typedef typename ResultTypeTrait::StorageType ResultStorageType;
87 typedef typename ResultTypeTrait::ReturnType ResultReturnType; 89 typedef typename ResultTypeTrait::ReturnType ResultReturnType;
88 90
89 SyncCallbackHelper() 91 SyncCallbackHelper()
90 : m_errorCode(FileError::OK) 92 : m_errorCode(FileError::OK)
91 , m_completed(false) 93 , m_completed(false)
92 { 94 {
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 m_result = ResultTypeTrait::createFromCallbackArg(result); 163 m_result = ResultTypeTrait::createFromCallbackArg(result);
162 m_completed = true; 164 m_completed = true;
163 } 165 }
164 166
165 ResultStorageType m_result; 167 ResultStorageType m_result;
166 FileError::ErrorCode m_errorCode; 168 FileError::ErrorCode m_errorCode;
167 bool m_completed; 169 bool m_completed;
168 }; 170 };
169 171
170 struct EmptyType : public RefCounted<EmptyType> { 172 struct EmptyType : public RefCounted<EmptyType> {
171 static PassRefPtr<EmptyType> create(EmptyType*) 173 static PassRefPtrWillBeRawPtr<EmptyType> create(EmptyType*)
172 { 174 {
173 return nullptr; 175 return nullptr;
174 } 176 }
175 }; 177 };
176 178
177 typedef SyncCallbackHelper<EntryCallback, Entry*, EntrySync> EntrySyncCallbackHe lper; 179 typedef SyncCallbackHelper<EntryCallback, Entry*, EntrySync> EntrySyncCallbackHe lper;
178 typedef SyncCallbackHelper<EntriesCallback, const EntryVector&, EntrySyncVector> EntriesSyncCallbackHelper; 180 typedef SyncCallbackHelper<EntriesCallback, const EntryHeapVector&, EntrySyncHea pVector> EntriesSyncCallbackHelper;
179 typedef SyncCallbackHelper<MetadataCallback, Metadata*, Metadata> MetadataSyncCa llbackHelper; 181 typedef SyncCallbackHelper<MetadataCallback, Metadata*, Metadata> MetadataSyncCa llbackHelper;
180 typedef SyncCallbackHelper<VoidCallback, EmptyType*, EmptyType> VoidSyncCallback Helper; 182 typedef SyncCallbackHelper<VoidCallback, EmptyType*, EmptyType> VoidSyncCallback Helper;
181 typedef SyncCallbackHelper<FileSystemCallback, DOMFileSystem*, DOMFileSystemSync > FileSystemSyncCallbackHelper; 183 typedef SyncCallbackHelper<FileSystemCallback, DOMFileSystem*, DOMFileSystemSync > FileSystemSyncCallbackHelper;
182 184
183 } // namespace WebCore 185 } // namespace WebCore
184 186
185 #endif // SyncCallbackHelper_h 187 #endif // SyncCallbackHelper_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698