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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 class FileSystemFlags; | 45 class FileSystemFlags; |
46 class VoidCallback; | 46 class VoidCallback; |
47 | 47 |
48 class MODULES_EXPORT DirectoryEntry final : public Entry { | 48 class MODULES_EXPORT DirectoryEntry final : public Entry { |
49 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
50 public: | 50 public: |
51 static DirectoryEntry* create(DOMFileSystemBase* fileSystem, const String& f
ullPath) | 51 static DirectoryEntry* create(DOMFileSystemBase* fileSystem, const String& f
ullPath) |
52 { | 52 { |
53 return new DirectoryEntry(fileSystem, fullPath); | 53 return new DirectoryEntry(fileSystem, fullPath); |
54 } | 54 } |
55 virtual bool isDirectory() const override { return true; } | 55 bool isDirectory() const override { return true; } |
56 | 56 |
57 DirectoryReader* createReader(); | 57 DirectoryReader* createReader(); |
58 void getFile(const String& path, const FileSystemFlags&, EntryCallback* = nu
llptr, ErrorCallback* = nullptr); | 58 void getFile(const String& path, const FileSystemFlags&, EntryCallback* = nu
llptr, ErrorCallback* = nullptr); |
59 void getDirectory(const String& path, const FileSystemFlags&, EntryCallback*
= nullptr, ErrorCallback* = nullptr); | 59 void getDirectory(const String& path, const FileSystemFlags&, EntryCallback*
= nullptr, ErrorCallback* = nullptr); |
60 void removeRecursively(VoidCallback* successCallback = nullptr, ErrorCallbac
k* = nullptr) const; | 60 void removeRecursively(VoidCallback* successCallback = nullptr, ErrorCallbac
k* = nullptr) const; |
61 | 61 |
62 DECLARE_VIRTUAL_TRACE(); | 62 DECLARE_VIRTUAL_TRACE(); |
63 | 63 |
64 private: | 64 private: |
65 DirectoryEntry(DOMFileSystemBase*, const String& fullPath); | 65 DirectoryEntry(DOMFileSystemBase*, const String& fullPath); |
66 }; | 66 }; |
67 | 67 |
68 DEFINE_TYPE_CASTS(DirectoryEntry, Entry, entry, entry->isDirectory(), entry.isDi
rectory()); | 68 DEFINE_TYPE_CASTS(DirectoryEntry, Entry, entry, entry->isDirectory(), entry.isDi
rectory()); |
69 | 69 |
70 } // namespace blink | 70 } // namespace blink |
71 | 71 |
72 #endif // DirectoryEntry_h | 72 #endif // DirectoryEntry_h |
OLD | NEW |