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

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

Issue 314333002: Enable Oilpan by default in modules/filesystem/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove consts from conversion ctor + copy assignment op Created 6 years, 6 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/EntriesCallback.h ('k') | Source/modules/filesystem/Entry.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/modules/filesystem/EntriesCallback.h ('k') | Source/modules/filesystem/Entry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698