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

Unified Diff: Source/modules/filesystem/DirectoryEntry.cpp

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/modules/filesystem/DirectoryEntry.h ('k') | Source/modules/filesystem/DirectoryEntrySync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DirectoryEntry.cpp
diff --git a/Source/modules/filesystem/DirectoryEntry.cpp b/Source/modules/filesystem/DirectoryEntry.cpp
index d0ec7a7e4c66cfd17ce2f2356c36decc3a713345..84c446563a178e07067d5781e561b2eff740bf5d 100644
--- a/Source/modules/filesystem/DirectoryEntry.cpp
+++ b/Source/modules/filesystem/DirectoryEntry.cpp
@@ -39,13 +39,13 @@
namespace WebCore {
-DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+DirectoryEntry::DirectoryEntry(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
: Entry(fileSystem, fullPath)
{
ScriptWrappable::init(this);
}
-PassRefPtr<DirectoryReader> DirectoryEntry::createReader()
+PassRefPtrWillBeRawPtr<DirectoryReader> DirectoryEntry::createReader()
{
return DirectoryReader::create(m_fileSystem, m_fullPath);
}
@@ -67,4 +67,9 @@ void DirectoryEntry::removeRecursively(PassOwnPtr<VoidCallback> successCallback,
m_fileSystem->removeRecursively(this, successCallback, errorCallback);
}
+void DirectoryEntry::trace(Visitor* visitor)
+{
+ Entry::trace(visitor);
+}
+
}
« no previous file with comments | « Source/modules/filesystem/DirectoryEntry.h ('k') | Source/modules/filesystem/DirectoryEntrySync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698