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

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

Issue 188503002: Oilpan: add transition types to FileSystem APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/modules/filesystem/FileEntry.h ('k') | Source/modules/filesystem/FileEntrySync.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntry.cpp
diff --git a/Source/modules/filesystem/FileEntry.cpp b/Source/modules/filesystem/FileEntry.cpp
index 082953cf4a637453cb6d27e7d3612dca390487c1..2d7978367ba82c9bc7c1edd8b0ec5f87cb54a220 100644
--- a/Source/modules/filesystem/FileEntry.cpp
+++ b/Source/modules/filesystem/FileEntry.cpp
@@ -39,7 +39,7 @@
namespace WebCore {
-FileEntry::FileEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+FileEntry::FileEntry(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
: Entry(fileSystem, fullPath)
{
ScriptWrappable::init(this);
@@ -55,4 +55,9 @@ void FileEntry::file(PassOwnPtr<FileCallback> successCallback, PassOwnPtr<ErrorC
filesystem()->createFile(this, successCallback, errorCallback);
}
+void FileEntry::trace(Visitor* visitor)
+{
+ Entry::trace(visitor);
+}
+
} // namespace
« no previous file with comments | « Source/modules/filesystem/FileEntry.h ('k') | Source/modules/filesystem/FileEntrySync.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698