diff options
Diffstat (limited to 'webkit/fileapi/local_file_system_operation.h')
-rw-r--r-- | webkit/fileapi/local_file_system_operation.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/fileapi/local_file_system_operation.h b/webkit/fileapi/local_file_system_operation.h index d6ba7c6..e80e91f 100644 --- a/webkit/fileapi/local_file_system_operation.h +++ b/webkit/fileapi/local_file_system_operation.h @@ -115,7 +115,7 @@ class WEBKIT_STORAGE_EXPORT LocalFileSystemOperation scoped_ptr<FileSystemOperationContext> operation_context); FileSystemContext* file_system_context() const { - return operation_context_->file_system_context(); + return file_system_context_; } FileSystemOperationContext* operation_context() const { @@ -230,6 +230,8 @@ class WEBKIT_STORAGE_EXPORT LocalFileSystemOperation // Returns false if there's another inflight pending operation. bool SetPendingOperationType(OperationType type); + scoped_refptr<FileSystemContext> file_system_context_; + scoped_ptr<FileSystemOperationContext> operation_context_; FileSystemFileUtil* src_util_; // Not owned. FileSystemFileUtil* dest_util_; // Not owned. |