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

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

Issue 563703002: Oilpan: Enable oilpan for callback classes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/DirectoryReader.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 8adec6557c6aa8ceb307b4ac18be7f4dca479d09..d001f502151d58d6be908a51df7cff633420a440 100644
--- a/Source/modules/filesystem/DirectoryEntry.cpp
+++ b/Source/modules/filesystem/DirectoryEntry.cpp
@@ -49,19 +49,19 @@ DirectoryReader* DirectoryEntry::createReader()
return DirectoryReader::create(m_fileSystem, m_fullPath);
}
-void DirectoryEntry::getFile(const String& path, const Dictionary& options, PassOwnPtrWillBeRawPtr<EntryCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback)
+void DirectoryEntry::getFile(const String& path, const Dictionary& options, EntryCallback* successCallback, ErrorCallback* errorCallback)
{
FileSystemFlags flags(options);
m_fileSystem->getFile(this, path, flags, successCallback, errorCallback);
}
-void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, PassOwnPtrWillBeRawPtr<EntryCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback)
+void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, EntryCallback* successCallback, ErrorCallback* errorCallback)
{
FileSystemFlags flags(options);
m_fileSystem->getDirectory(this, path, flags, successCallback, errorCallback);
}
-void DirectoryEntry::removeRecursively(PassOwnPtrWillBeRawPtr<VoidCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback) const
+void DirectoryEntry::removeRecursively(VoidCallback* successCallback, ErrorCallback* errorCallback) const
{
m_fileSystem->removeRecursively(this, successCallback, errorCallback);
}
« no previous file with comments | « Source/modules/filesystem/DirectoryEntry.h ('k') | Source/modules/filesystem/DirectoryReader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698