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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystemEntryCallback.h

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/filesystem/FileSystemEntryCallback.h
diff --git a/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h b/third_party/WebKit/Source/modules/filesystem/FileSystemEntryCallback.h
similarity index 84%
rename from third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
rename to third_party/WebKit/Source/modules/filesystem/FileSystemEntryCallback.h
index 9a0b70c705b2f2a0fb8a6b33b3cbf4f4e64c5373..74218efd90281a8a54f38a3b2e38851110096340 100644
--- a/third_party/WebKit/Source/modules/filesystem/EntriesCallback.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystemEntryCallback.h
@@ -28,23 +28,23 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef EntriesCallback_h
-#define EntriesCallback_h
+#ifndef FileSystemEntryCallback_h
+#define FileSystemEntryCallback_h
#include "platform/heap/Handle.h"
namespace blink {
-class Entry;
-typedef HeapVector<Member<Entry>> EntryHeapVector;
+class FileSystemEntry;
-class EntriesCallback : public GarbageCollectedFinalized<EntriesCallback> {
+class FileSystemEntryCallback
+ : public GarbageCollectedFinalized<FileSystemEntryCallback> {
public:
- virtual ~EntriesCallback() {}
+ virtual ~FileSystemEntryCallback() {}
DEFINE_INLINE_VIRTUAL_TRACE() {}
- virtual void handleEvent(const EntryHeapVector&) = 0;
+ virtual void handleEvent(FileSystemEntry*) = 0;
};
} // namespace blink
-#endif // EntriesCallback_h
+#endif // FileSystemEntryCallback_h

Powered by Google App Engine
This is Rietveld 408576698