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

Unified Diff: Source/modules/filesystem/DirectoryReader.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/DirectoryEntry.cpp ('k') | Source/modules/filesystem/DirectoryReader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DirectoryReader.h
diff --git a/Source/modules/filesystem/DirectoryReader.h b/Source/modules/filesystem/DirectoryReader.h
index cdf5261c97bc0d9b2c17d756f176e45942def38e..6e097e12b48f3663dfd7e729a0541d57e8fc0644 100644
--- a/Source/modules/filesystem/DirectoryReader.h
+++ b/Source/modules/filesystem/DirectoryReader.h
@@ -52,7 +52,7 @@ public:
virtual ~DirectoryReader();
- void readEntries(PassOwnPtrWillBeRawPtr<EntriesCallback>, PassOwnPtrWillBeRawPtr<ErrorCallback> = nullptr);
+ void readEntries(EntriesCallback*, ErrorCallback* = nullptr);
DOMFileSystem* filesystem() const { return static_cast<DOMFileSystem*>(m_fileSystem.get()); }
@@ -71,8 +71,8 @@ private:
bool m_isReading;
EntryHeapVector m_entries;
RefPtrWillBeMember<FileError> m_error;
- OwnPtrWillBeMember<EntriesCallback> m_entriesCallback;
- OwnPtrWillBeMember<ErrorCallback> m_errorCallback;
+ Member<EntriesCallback> m_entriesCallback;
+ Member<ErrorCallback> m_errorCallback;
};
} // namespace blink
« no previous file with comments | « Source/modules/filesystem/DirectoryEntry.cpp ('k') | Source/modules/filesystem/DirectoryReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698