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

Unified Diff: Source/modules/filesystem/FileSystemCallbacks.h

Issue 22436002: Replace EntryArray type by an Entry[] (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/filesystem/EntryArraySync.cpp ('k') | Source/modules/filesystem/FileSystemCallbacks.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileSystemCallbacks.h
diff --git a/Source/modules/filesystem/FileSystemCallbacks.h b/Source/modules/filesystem/FileSystemCallbacks.h
index 7b5570ecff34f0526f8c9d00ee70ed808336d908..f0d9604e70fd14e0fb1f44fac4e32f084513a440 100644
--- a/Source/modules/filesystem/FileSystemCallbacks.h
+++ b/Source/modules/filesystem/FileSystemCallbacks.h
@@ -32,6 +32,7 @@
#define FileSystemCallbacks_h
#include "core/platform/AsyncFileSystemCallbacks.h"
+#include "modules/filesystem/EntriesCallback.h"
#include "modules/filesystem/FileSystemType.h"
#include "wtf/PassRefPtr.h"
#include "wtf/Vector.h"
@@ -43,7 +44,6 @@ class AsyncFileWriter;
class DOMFileSystemBase;
class DirectoryReaderBase;
class EntriesCallback;
-class EntryArray;
class EntryCallback;
class ErrorCallback;
struct FileMetadata;
@@ -105,7 +105,7 @@ private:
RefPtr<EntriesCallback> m_successCallback;
RefPtr<DirectoryReaderBase> m_directoryReader;
String m_basePath;
- RefPtr<EntryArray> m_entries;
+ EntryVector m_entries;
};
class FileSystemCallbacks : public FileSystemCallbacksBase {
« no previous file with comments | « Source/modules/filesystem/EntryArraySync.cpp ('k') | Source/modules/filesystem/FileSystemCallbacks.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698