| Index: webkit/fileapi/file_system_operation_context.cc
|
| diff --git a/webkit/fileapi/file_system_operation_context.cc b/webkit/fileapi/file_system_operation_context.cc
|
| index 9597954dfcfde7c8f91e5212b5a113229a4b4095..6305cea0d8b967c5d84a64194dd07b9f24b68aea 100644
|
| --- a/webkit/fileapi/file_system_operation_context.cc
|
| +++ b/webkit/fileapi/file_system_operation_context.cc
|
| @@ -16,11 +16,13 @@ FileSystemOperationContext::FileSystemOperationContext(
|
| task_runner_(file_system_context_->task_runners()->file_task_runner()),
|
| allowed_bytes_growth_(0) {}
|
|
|
| -FileSystemOperationContext::~FileSystemOperationContext() {}
|
| +FileSystemOperationContext::FileSystemOperationContext(
|
| + FileSystemContext* context,
|
| + base::SequencedTaskRunner* task_runner)
|
| + : file_system_context_(context),
|
| + task_runner_(task_runner),
|
| + allowed_bytes_growth_(0) {}
|
|
|
| -void FileSystemOperationContext::set_task_runner(
|
| - base::SequencedTaskRunner* task_runner) {
|
| - task_runner_ = task_runner;
|
| -}
|
| +FileSystemOperationContext::~FileSystemOperationContext() {}
|
|
|
| } // namespace fileapi
|
|
|