| Index: content/browser/fileapi/sandbox_file_system_backend_delegate_unittest.cc
|
| diff --git a/content/browser/fileapi/sandbox_file_system_backend_delegate_unittest.cc b/content/browser/fileapi/sandbox_file_system_backend_delegate_unittest.cc
|
| index fd25aa7f93774d865f2a5b127e06aa0b9ad98481..1b5b19b122cb15a6f0aa01b578d5a08482e95b02 100644
|
| --- a/content/browser/fileapi/sandbox_file_system_backend_delegate_unittest.cc
|
| +++ b/content/browser/fileapi/sandbox_file_system_backend_delegate_unittest.cc
|
| @@ -8,7 +8,8 @@
|
| #include "base/files/file_util.h"
|
| #include "base/files/scoped_temp_dir.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "base/thread_task_runner_handle.h"
|
| +#include "base/message_loop/message_loop.h"
|
| +#include "base/message_loop/message_loop_proxy.h"
|
| #include "content/public/test/test_file_system_options.h"
|
| #include "storage/browser/fileapi/file_system_url.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -36,8 +37,10 @@ class SandboxFileSystemBackendDelegateTest : public testing::Test {
|
| ASSERT_TRUE(data_dir_.CreateUniqueTempDir());
|
| delegate_.reset(new storage::SandboxFileSystemBackendDelegate(
|
| NULL /* quota_manager_proxy */,
|
| - base::ThreadTaskRunnerHandle::Get().get(), data_dir_.path(),
|
| - NULL /* special_storage_policy */, CreateAllowFileAccessOptions()));
|
| + base::MessageLoopProxy::current().get(),
|
| + data_dir_.path(),
|
| + NULL /* special_storage_policy */,
|
| + CreateAllowFileAccessOptions()));
|
| }
|
|
|
| bool IsAccessValid(const FileSystemURL& url) const {
|
|
|