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

Unified Diff: Source/modules/filesystem/FileEntry.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
Index: Source/modules/filesystem/FileEntry.cpp
diff --git a/Source/modules/filesystem/FileEntry.cpp b/Source/modules/filesystem/FileEntry.cpp
index 6056e508c7ea09e9f413c88e96263bf6745f11e6..909ce24fbaa46a3c79f69d72ba64ac965c869805 100644
--- a/Source/modules/filesystem/FileEntry.cpp
+++ b/Source/modules/filesystem/FileEntry.cpp
@@ -44,12 +44,12 @@ FileEntry::FileEntry(DOMFileSystemBase* fileSystem, const String& fullPath)
{
}
-void FileEntry::createWriter(PassOwnPtrWillBeRawPtr<FileWriterCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback)
+void FileEntry::createWriter(FileWriterCallback* successCallback, ErrorCallback* errorCallback)
{
filesystem()->createWriter(this, successCallback, errorCallback);
}
-void FileEntry::file(PassOwnPtrWillBeRawPtr<FileCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback)
+void FileEntry::file(FileCallback* successCallback, ErrorCallback* errorCallback)
{
filesystem()->createFile(this, successCallback, errorCallback);
}

Powered by Google App Engine
This is Rietveld 408576698