| Index: Source/modules/filesystem/LocalFileSystem.cpp
|
| diff --git a/Source/modules/filesystem/LocalFileSystem.cpp b/Source/modules/filesystem/LocalFileSystem.cpp
|
| index 27f92c1e7b381e4ba7fe480971fef2053b921516..deb05efb48881dafef35e7dc20ba3b5979ba5589 100644
|
| --- a/Source/modules/filesystem/LocalFileSystem.cpp
|
| +++ b/Source/modules/filesystem/LocalFileSystem.cpp
|
| @@ -88,12 +88,12 @@
|
| RefPtr<CallbackWrapper> wrapper = adoptRef(new CallbackWrapper(callbacks));
|
| requestFileSystemAccessInternal(context,
|
| bind(&LocalFileSystem::resolveURLInternal, this, fileSystemURL, wrapper),
|
| - bind(&LocalFileSystem::fileSystemNotAllowedInternal, this, PassRefPtrWillBeRawPtr<ExecutionContext>(context), wrapper));
|
| + bind(&LocalFileSystem::fileSystemNotAllowedInternal, this, PassRefPtr<ExecutionContext>(context), wrapper));
|
| }
|
|
|
| void LocalFileSystem::requestFileSystem(ExecutionContext* context, FileSystemType type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
|
| {
|
| - RefPtrWillBeRawPtr<ExecutionContext> contextPtr(context);
|
| + RefPtr<ExecutionContext> contextPtr(context);
|
| RefPtr<CallbackWrapper> wrapper = adoptRef(new CallbackWrapper(callbacks));
|
| requestFileSystemAccessInternal(context,
|
| bind(&LocalFileSystem::fileSystemAllowedInternal, this, contextPtr, type, wrapper),
|
| @@ -102,7 +102,7 @@
|
|
|
| void LocalFileSystem::deleteFileSystem(ExecutionContext* context, FileSystemType type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks)
|
| {
|
| - RefPtrWillBeRawPtr<ExecutionContext> contextPtr(context);
|
| + RefPtr<ExecutionContext> contextPtr(context);
|
| ASSERT(context);
|
| ASSERT_WITH_SECURITY_IMPLICATION(context->isDocument());
|
|
|
| @@ -130,14 +130,14 @@
|
| }
|
|
|
| void LocalFileSystem::fileSystemNotAllowedInternal(
|
| - PassRefPtrWillBeRawPtr<ExecutionContext> context,
|
| + PassRefPtr<ExecutionContext> context,
|
| PassRefPtr<CallbackWrapper> callbacks)
|
| {
|
| context->postTask(createCallbackTask(&fileSystemNotAllowed, callbacks->release()));
|
| }
|
|
|
| void LocalFileSystem::fileSystemAllowedInternal(
|
| - PassRefPtrWillBeRawPtr<ExecutionContext> context,
|
| + PassRefPtr<ExecutionContext> context,
|
| FileSystemType type,
|
| PassRefPtr<CallbackWrapper> callbacks)
|
| {
|
| @@ -153,7 +153,7 @@
|
| }
|
|
|
| void LocalFileSystem::deleteFileSystemInternal(
|
| - PassRefPtrWillBeRawPtr<ExecutionContext> context,
|
| + PassRefPtr<ExecutionContext> context,
|
| FileSystemType type,
|
| PassRefPtr<CallbackWrapper> callbacks)
|
| {
|
|
|