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

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: 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/DirectoryEntry.cpp
diff --git a/Source/modules/filesystem/DirectoryEntry.cpp b/Source/modules/filesystem/DirectoryEntry.cpp
index d0ec7a7e4c66cfd17ce2f2356c36decc3a713345..3c091de6aad18c1c55a2cfd0db49723c326a7f75 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);
}

Powered by Google App Engine
This is Rietveld 408576698