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

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

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Avoid DirectoryReaderBase virtuals Created 6 years, 9 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
Index: Source/modules/filesystem/DirectoryEntrySync.h
diff --git a/Source/modules/filesystem/DirectoryEntrySync.h b/Source/modules/filesystem/DirectoryEntrySync.h
index 739581537345fcc33500de08467e7e6bb51f59f7..4b81b5bf9074eb5e21709a3eb09d0fd12d08e2f5 100644
--- a/Source/modules/filesystem/DirectoryEntrySync.h
+++ b/Source/modules/filesystem/DirectoryEntrySync.h
@@ -45,19 +45,19 @@ class FileEntrySync;
class DirectoryEntrySync FINAL : public EntrySync {
haraken 2014/03/07 08:24:35 Shall we add a trace() method to all GarbageCollec
sof 2014/03/07 09:37:36 I don't think it adds much value, given the class'
haraken 2014/03/10 01:55:26 I'd prefer to add (and in fact we have added) trac
sof 2014/03/10 10:01:23 ok, added the methods here & will follow that. (I
public:
- static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+ static PassRefPtrWillBeRawPtr<DirectoryEntrySync> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
{
- return adoptRef(new DirectoryEntrySync(fileSystem, fullPath));
+ return adoptRefWillBeNoop(new DirectoryEntrySync(fileSystem, fullPath));
}
virtual bool isDirectory() const OVERRIDE { return true; }
- PassRefPtr<DirectoryReaderSync> createReader();
- PassRefPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&);
- PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&);
+ PassRefPtrWillBeRawPtr<DirectoryReaderSync> createReader();
+ PassRefPtrWillBeRawPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&);
+ PassRefPtrWillBeRawPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&);
void removeRecursively(ExceptionState&);
private:
- DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
+ DirectoryEntrySync(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& fullPath);
};
DEFINE_TYPE_CASTS(DirectoryEntrySync, EntrySync, entry, entry->isDirectory(), entry.isDirectory());

Powered by Google App Engine
This is Rietveld 408576698