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

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

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/FileCallback.h ('k') | Source/modules/filesystem/FileEntry.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntry.h
diff --git a/Source/modules/filesystem/FileEntry.h b/Source/modules/filesystem/FileEntry.h
index 9ba26d7d3f2a9a4bda9dfd762812949b3b4e19f3..1186de733e391becf77d6792c373bd2f09a08f4c 100644
--- a/Source/modules/filesystem/FileEntry.h
+++ b/Source/modules/filesystem/FileEntry.h
@@ -48,8 +48,8 @@ public:
return new FileEntry(fileSystem, fullPath);
}
- void createWriter(PassOwnPtrWillBeRawPtr<FileWriterCallback>, PassOwnPtrWillBeRawPtr<ErrorCallback> = nullptr);
- void file(PassOwnPtrWillBeRawPtr<FileCallback>, PassOwnPtrWillBeRawPtr<ErrorCallback> = nullptr);
+ void createWriter(FileWriterCallback*, ErrorCallback* = nullptr);
+ void file(FileCallback*, ErrorCallback* = nullptr);
virtual bool isFile() const OVERRIDE { return true; }
« no previous file with comments | « Source/modules/filesystem/FileCallback.h ('k') | Source/modules/filesystem/FileEntry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698