Index: Source/modules/filesystem/Entry.h |
diff --git a/Source/modules/filesystem/Entry.h b/Source/modules/filesystem/Entry.h |
index 4c3cd005f052f4d2c8837de5983f73678fa22b6b..746355877d90ff3349cd363d48721ce7ea973781 100644 |
--- a/Source/modules/filesystem/Entry.h |
+++ b/Source/modules/filesystem/Entry.h |
@@ -35,7 +35,6 @@ |
#include "modules/filesystem/DOMFileSystem.h" |
#include "modules/filesystem/EntryBase.h" |
#include "platform/heap/Handle.h" |
-#include "wtf/RefCounted.h" |
namespace WebCore { |
@@ -51,15 +50,15 @@ public: |
DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); } |
void getMetadata(PassOwnPtr<MetadataCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr); |
- void moveTo(PassRefPtrWillBeRawPtr<DirectoryEntry> parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
- void copyTo(PassRefPtrWillBeRawPtr<DirectoryEntry> parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
+ void moveTo(DirectoryEntry* parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
+ void copyTo(DirectoryEntry* parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
void remove(PassOwnPtr<VoidCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
void getParent(PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const; |
virtual void trace(Visitor*) OVERRIDE; |
protected: |
- Entry(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& fullPath); |
+ Entry(DOMFileSystemBase*, const String& fullPath); |
}; |
} // namespace WebCore |