| Index: Source/modules/filesystem/DOMFileSystem.h
|
| diff --git a/Source/modules/filesystem/DOMFileSystem.h b/Source/modules/filesystem/DOMFileSystem.h
|
| index c029355ceba606a471ed094d91230a0ea87f8a92..623feac7244de26a81404bb17a658fc2b610d549 100644
|
| --- a/Source/modules/filesystem/DOMFileSystem.h
|
| +++ b/Source/modules/filesystem/DOMFileSystem.h
|
| @@ -49,12 +49,12 @@ class FileWriterCallback;
|
|
|
| class DOMFileSystem FINAL : public DOMFileSystemBase, public ScriptWrappable, public ActiveDOMObject {
|
| public:
|
| - static PassRefPtr<DOMFileSystem> create(ExecutionContext*, const String& name, FileSystemType, const KURL& rootURL);
|
| + static PassRefPtrWillBeRawPtr<DOMFileSystem> create(ExecutionContext*, const String& name, FileSystemType, const KURL& rootURL);
|
|
|
| // Creates a new isolated file system for the given filesystemId.
|
| - static PassRefPtr<DOMFileSystem> createIsolatedFileSystem(ExecutionContext*, const String& filesystemId);
|
| + static PassRefPtrWillBeRawPtr<DOMFileSystem> createIsolatedFileSystem(ExecutionContext*, const String& filesystemId);
|
|
|
| - PassRefPtr<DirectoryEntry> root();
|
| + PassRefPtrWillBeRawPtr<DirectoryEntry> root();
|
|
|
| // DOMFileSystemBase overrides.
|
| virtual void addPendingCallbacks() OVERRIDE;
|
| @@ -79,7 +79,7 @@ public:
|
| }
|
|
|
| template <typename CB, typename CBArg>
|
| - void scheduleCallback(PassOwnPtr<CB> callback, const CBArg& callbackArg)
|
| + void scheduleCallback(PassOwnPtr<CB> callback, const CBArg& callbackArg)
|
| {
|
| scheduleCallback(executionContext(), callback, callbackArg);
|
| }
|
|
|