| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 #include "core/dom/ExecutionContextTask.h" | 37 #include "core/dom/ExecutionContextTask.h" |
| 38 #include "modules/ModulesExport.h" | 38 #include "modules/ModulesExport.h" |
| 39 #include "modules/filesystem/DOMFileSystemBase.h" | 39 #include "modules/filesystem/DOMFileSystemBase.h" |
| 40 #include "modules/filesystem/EntriesCallback.h" | 40 #include "modules/filesystem/EntriesCallback.h" |
| 41 #include "platform/heap/Handle.h" | 41 #include "platform/heap/Handle.h" |
| 42 #include "public/platform/WebTraceLocation.h" | 42 #include "public/platform/WebTraceLocation.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class DirectoryEntry; | 46 class DirectoryEntry; |
| 47 class FileCallback; | 47 class BlobCallback; |
| 48 class FileEntry; | 48 class FileEntry; |
| 49 class FileWriterCallback; | 49 class FileWriterCallback; |
| 50 | 50 |
| 51 class MODULES_EXPORT DOMFileSystem final : public DOMFileSystemBase, public Scri
ptWrappable, public ActiveDOMObject { | 51 class MODULES_EXPORT DOMFileSystem final : public DOMFileSystemBase, public Scri
ptWrappable, public ActiveDOMObject { |
| 52 DEFINE_WRAPPERTYPEINFO(); | 52 DEFINE_WRAPPERTYPEINFO(); |
| 53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMFileSystem); | 53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMFileSystem); |
| 54 public: | 54 public: |
| 55 static DOMFileSystem* create(ExecutionContext*, const String& name, FileSyst
emType, const KURL& rootURL); | 55 static DOMFileSystem* create(ExecutionContext*, const String& name, FileSyst
emType, const KURL& rootURL); |
| 56 | 56 |
| 57 // Creates a new isolated file system for the given filesystemId. | 57 // Creates a new isolated file system for the given filesystemId. |
| 58 static DOMFileSystem* createIsolatedFileSystem(ExecutionContext*, const Stri
ng& filesystemId); | 58 static DOMFileSystem* createIsolatedFileSystem(ExecutionContext*, const Stri
ng& filesystemId); |
| 59 | 59 |
| 60 DirectoryEntry* root() const; | 60 DirectoryEntry* root() const; |
| 61 | 61 |
| 62 // DOMFileSystemBase overrides. | 62 // DOMFileSystemBase overrides. |
| 63 void addPendingCallbacks() override; | 63 void addPendingCallbacks() override; |
| 64 void removePendingCallbacks() override; | 64 void removePendingCallbacks() override; |
| 65 void reportError(ErrorCallback*, FileError*) override; | 65 void reportError(ErrorCallback*, FileError*) override; |
| 66 | 66 |
| 67 // ActiveDOMObject overrides. | 67 // ActiveDOMObject overrides. |
| 68 bool hasPendingActivity() const override; | 68 bool hasPendingActivity() const override; |
| 69 | 69 |
| 70 void createWriter(const FileEntry*, FileWriterCallback*, ErrorCallback*); | 70 void createWriter(const FileEntry*, FileWriterCallback*, ErrorCallback*); |
| 71 void createFile(const FileEntry*, FileCallback*, ErrorCallback*); | 71 void createFile(const FileEntry*, BlobCallback*, ErrorCallback*); |
| 72 | 72 |
| 73 // Schedule a callback. This should not cross threads (should be called on t
he same context thread). | 73 // Schedule a callback. This should not cross threads (should be called on t
he same context thread). |
| 74 // FIXME: move this to a more generic place. | 74 // FIXME: move this to a more generic place. |
| 75 template <typename CB, typename CBArg> | 75 template <typename CB, typename CBArg> |
| 76 static void scheduleCallback(ExecutionContext*, CB*, CBArg*); | 76 static void scheduleCallback(ExecutionContext*, CB*, CBArg*); |
| 77 | 77 |
| 78 template <typename CB, typename CBArg> | 78 template <typename CB, typename CBArg> |
| 79 static void scheduleCallback(ExecutionContext*, CB*, const HeapVector<CBArg>
&); | 79 static void scheduleCallback(ExecutionContext*, CB*, const HeapVector<CBArg>
&); |
| 80 | 80 |
| 81 template <typename CB, typename CBArg> | 81 template <typename CB, typename CBArg> |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal
lback) | 207 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal
lback) |
| 208 { | 208 { |
| 209 ASSERT(executionContext->isContextThread()); | 209 ASSERT(executionContext->isContextThread()); |
| 210 if (callback) | 210 if (callback) |
| 211 executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbac
kNoArgTask<CB>(callback))); | 211 executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbac
kNoArgTask<CB>(callback))); |
| 212 } | 212 } |
| 213 | 213 |
| 214 } // namespace blink | 214 } // namespace blink |
| 215 | 215 |
| 216 #endif // DOMFileSystem_h | 216 #endif // DOMFileSystem_h |
| OLD | NEW |