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

Unified Diff: Source/modules/filesystem/EntrySync.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/EntryBase.cpp ('k') | Source/modules/filesystem/EntrySync.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/EntrySync.h
diff --git a/Source/modules/filesystem/EntrySync.h b/Source/modules/filesystem/EntrySync.h
index 9f47fe21e787fa96a5739f2bdc5a9606431150e9..0acd8ab9b234aeea49eb52632fccc6fb9035c541 100644
--- a/Source/modules/filesystem/EntrySync.h
+++ b/Source/modules/filesystem/EntrySync.h
@@ -36,7 +36,6 @@
#include "modules/filesystem/EntryBase.h"
#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
-#include "wtf/RefCounted.h"
namespace WebCore {
@@ -46,20 +45,20 @@ class ExceptionState;
class EntrySync : public EntryBase, public ScriptWrappable {
public:
- static PassRefPtrWillBeRawPtr<EntrySync> create(EntryBase*);
+ static EntrySync* create(EntryBase*);
DOMFileSystemSync* filesystem() const { return static_cast<DOMFileSystemSync*>(m_fileSystem.get()); }
- PassRefPtrWillBeRawPtr<Metadata> getMetadata(ExceptionState&);
- PassRefPtrWillBeRawPtr<EntrySync> moveTo(PassRefPtrWillBeRawPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
- PassRefPtrWillBeRawPtr<EntrySync> copyTo(PassRefPtrWillBeRawPtr<DirectoryEntrySync> parent, const String& name, ExceptionState&) const;
+ Metadata* getMetadata(ExceptionState&);
+ EntrySync* moveTo(DirectoryEntrySync* parent, const String& name, ExceptionState&) const;
+ EntrySync* copyTo(DirectoryEntrySync* parent, const String& name, ExceptionState&) const;
void remove(ExceptionState&) const;
- PassRefPtrWillBeRawPtr<EntrySync> getParent() const;
+ EntrySync* getParent() const;
virtual void trace(Visitor*) OVERRIDE;
protected:
- EntrySync(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& fullPath);
+ EntrySync(DOMFileSystemBase*, const String& fullPath);
};
}
« no previous file with comments | « Source/modules/filesystem/EntryBase.cpp ('k') | Source/modules/filesystem/EntrySync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698