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

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: Avoid DirectoryReaderBase virtuals 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
Index: Source/modules/filesystem/FileEntrySync.cpp
diff --git a/Source/modules/filesystem/FileEntrySync.cpp b/Source/modules/filesystem/FileEntrySync.cpp
index 7d7049c2fb960b2cea4aff0efc86facbf7bd4325..e3088a669e865043db73b461e454651ead10246f 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,7 +48,7 @@ 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);
}

Powered by Google App Engine
This is Rietveld 408576698