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

Unified Diff: Source/modules/filesystem/FileEntrySync.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/FileEntrySync.h ('k') | Source/modules/filesystem/FileSystemCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/FileEntrySync.cpp
diff --git a/Source/modules/filesystem/FileEntrySync.cpp b/Source/modules/filesystem/FileEntrySync.cpp
index 7d7049c2fb960b2cea4aff0efc86facbf7bd4325..569e5f276d68759ad9dd846e30e9684734570751 100644
--- a/Source/modules/filesystem/FileEntrySync.cpp
+++ b/Source/modules/filesystem/FileEntrySync.cpp
@@ -37,7 +37,7 @@
namespace WebCore {
-FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+FileEntrySync::FileEntrySync(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
: EntrySync(fileSystem, fullPath)
{
ScriptWrappable::init(this);
@@ -48,9 +48,14 @@ PassRefPtrWillBeRawPtr<File> FileEntrySync::file(ExceptionState& exceptionState)
return filesystem()->createFile(this, exceptionState);
}
-PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& exceptionState)
+PassRefPtrWillBeRawPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& exceptionState)
{
return filesystem()->createWriter(this, exceptionState);
}
+void FileEntrySync::trace(Visitor* visitor)
+{
+ EntrySync::trace(visitor);
+}
+
}
« no previous file with comments | « Source/modules/filesystem/FileEntrySync.h ('k') | Source/modules/filesystem/FileSystemCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698