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

Unified Diff: Source/modules/filesystem/EntryArraySync.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/EntryArray.idl ('k') | Source/modules/filesystem/EntryArraySync.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/EntryArraySync.h
diff --git a/Source/modules/filesystem/EntryArraySync.h b/Source/modules/filesystem/EntryArraySync.h
index 2a0508d77b23a64d8ecf05331972f7d38ce3ffc4..689c55846b97406e46bd8371f4bd2bfec82b3238 100644
--- a/Source/modules/filesystem/EntryArraySync.h
+++ b/Source/modules/filesystem/EntryArraySync.h
@@ -32,14 +32,13 @@
#define EntryArraySync_h
#include "bindings/v8/ScriptWrappable.h"
+#include "modules/filesystem/EntriesCallback.h"
#include "modules/filesystem/EntrySync.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
namespace WebCore {
-class EntryArray;
-
class EntryArraySync : public RefCounted<EntryArraySync>, public ScriptWrappable {
public:
static PassRefPtr<EntryArraySync> create()
@@ -47,7 +46,7 @@ public:
return adoptRef(new EntryArraySync());
}
- static PassRefPtr<EntryArraySync> create(EntryArray*);
+ static PassRefPtr<EntryArraySync> create(const EntryVector&);
unsigned length() const { return m_entries.size(); }
EntrySync* item(unsigned index) const;
« no previous file with comments | « Source/modules/filesystem/EntryArray.idl ('k') | Source/modules/filesystem/EntryArraySync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698