| 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 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef DOMFileSystem_h | 31 #ifndef DOMFileSystem_h |
| 32 #define DOMFileSystem_h | 32 #define DOMFileSystem_h |
| 33 | 33 |
| 34 #include "bindings/core/v8/ScriptWrappable.h" | 34 #include "bindings/core/v8/ScriptWrappable.h" |
| 35 #include "bindings/core/v8/V8GCRoot.h" |
| 35 #include "core/dom/ActiveDOMObject.h" | 36 #include "core/dom/ActiveDOMObject.h" |
| 36 #include "core/dom/ExecutionContext.h" | 37 #include "core/dom/ExecutionContext.h" |
| 37 #include "core/dom/ExecutionContextTask.h" | 38 #include "core/dom/ExecutionContextTask.h" |
| 38 #include "modules/ModulesExport.h" | 39 #include "modules/ModulesExport.h" |
| 39 #include "modules/filesystem/DOMFileSystemBase.h" | 40 #include "modules/filesystem/DOMFileSystemBase.h" |
| 40 #include "modules/filesystem/EntriesCallback.h" | 41 #include "modules/filesystem/EntriesCallback.h" |
| 41 #include "platform/heap/Handle.h" | 42 #include "platform/heap/Handle.h" |
| 42 #include "public/platform/WebTraceLocation.h" | 43 #include "public/platform/WebTraceLocation.h" |
| 43 | 44 |
| 44 namespace blink { | 45 namespace blink { |
| 45 | 46 |
| 46 class DirectoryEntry; | 47 class DirectoryEntry; |
| 47 class BlobCallback; | 48 class BlobCallback; |
| 48 class FileEntry; | 49 class FileEntry; |
| 49 class FileWriterCallback; | 50 class FileWriterCallback; |
| 50 | 51 |
| 51 class MODULES_EXPORT DOMFileSystem final : public DOMFileSystemBase, public Scri
ptWrappable, public ActiveDOMObject { | 52 class MODULES_EXPORT DOMFileSystem final : public DOMFileSystemBase, public Scri
ptWrappable, public ActiveDOMObject, public V8GCRoot { |
| 52 DEFINE_WRAPPERTYPEINFO(); | 53 DEFINE_WRAPPERTYPEINFO(); |
| 53 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMFileSystem); | 54 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMFileSystem); |
| 54 public: | 55 public: |
| 55 static DOMFileSystem* create(ExecutionContext*, const String& name, FileSyst
emType, const KURL& rootURL); | 56 static DOMFileSystem* create(ExecutionContext*, const String& name, FileSyst
emType, const KURL& rootURL); |
| 56 | 57 |
| 57 // Creates a new isolated file system for the given filesystemId. | 58 // Creates a new isolated file system for the given filesystemId. |
| 58 static DOMFileSystem* createIsolatedFileSystem(ExecutionContext*, const Stri
ng& filesystemId); | 59 static DOMFileSystem* createIsolatedFileSystem(ExecutionContext*, const Stri
ng& filesystemId); |
| 59 | 60 |
| 60 DirectoryEntry* root() const; | 61 DirectoryEntry* root() const; |
| 61 | 62 |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal
lback) | 208 void DOMFileSystem::scheduleCallback(ExecutionContext* executionContext, CB* cal
lback) |
| 208 { | 209 { |
| 209 ASSERT(executionContext->isContextThread()); | 210 ASSERT(executionContext->isContextThread()); |
| 210 if (callback) | 211 if (callback) |
| 211 executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbac
kNoArgTask<CB>(callback))); | 212 executionContext->postTask(BLINK_FROM_HERE, adoptPtr(new DispatchCallbac
kNoArgTask<CB>(callback))); |
| 212 } | 213 } |
| 213 | 214 |
| 214 } // namespace blink | 215 } // namespace blink |
| 215 | 216 |
| 216 #endif // DOMFileSystem_h | 217 #endif // DOMFileSystem_h |
| OLD | NEW |