Index: Source/modules/filesystem/DOMWindowFileSystem.cpp |
diff --git a/Source/modules/filesystem/DOMWindowFileSystem.cpp b/Source/modules/filesystem/DOMWindowFileSystem.cpp |
index f78b085d2d62400f23704bad86f1ecceaf70e0f5..bc491298ed92293432d863f2d7c98bd8f0a79233 100644 |
--- a/Source/modules/filesystem/DOMWindowFileSystem.cpp |
+++ b/Source/modules/filesystem/DOMWindowFileSystem.cpp |
@@ -48,7 +48,7 @@ DOMWindowFileSystem::~DOMWindowFileSystem() |
{ |
} |
-void DOMWindowFileSystem::webkitRequestFileSystem(LocalDOMWindow& window, int type, long long size, PassOwnPtrWillBeRawPtr<FileSystemCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback) |
+void DOMWindowFileSystem::webkitRequestFileSystem(LocalDOMWindow& window, int type, long long size, FileSystemCallback* successCallback, ErrorCallback* errorCallback) |
{ |
if (!window.isCurrentlyDisplayedInFrame()) |
return; |
@@ -71,7 +71,7 @@ void DOMWindowFileSystem::webkitRequestFileSystem(LocalDOMWindow& window, int ty |
LocalFileSystem::from(*document)->requestFileSystem(document, fileSystemType, size, FileSystemCallbacks::create(successCallback, errorCallback, document, fileSystemType)); |
} |
-void DOMWindowFileSystem::webkitResolveLocalFileSystemURL(LocalDOMWindow& window, const String& url, PassOwnPtrWillBeRawPtr<EntryCallback> successCallback, PassOwnPtrWillBeRawPtr<ErrorCallback> errorCallback) |
+void DOMWindowFileSystem::webkitResolveLocalFileSystemURL(LocalDOMWindow& window, const String& url, EntryCallback* successCallback, ErrorCallback* errorCallback) |
{ |
if (!window.isCurrentlyDisplayedInFrame()) |
return; |