| Index: webkit/browser/fileapi/local_file_util_unittest.cc
|
| diff --git a/webkit/browser/fileapi/local_file_util_unittest.cc b/webkit/browser/fileapi/local_file_util_unittest.cc
|
| index cac0d4cbe4503d2bda59599d6db7c9f468be993a..9abcffcaf44505f1ad707f3cc031e75c43459702 100644
|
| --- a/webkit/browser/fileapi/local_file_util_unittest.cc
|
| +++ b/webkit/browser/fileapi/local_file_util_unittest.cc
|
| @@ -49,7 +49,7 @@ class LocalFileUtilTest : public testing::Test {
|
| protected:
|
| FileSystemOperationContext* NewContext() {
|
| FileSystemOperationContext* context =
|
| - new FileSystemOperationContext(file_system_context_);
|
| + new FileSystemOperationContext(file_system_context_.get());
|
| context->set_update_observers(
|
| *file_system_context_->GetUpdateObservers(kFileSystemType));
|
| context->set_root_path(data_dir_.path());
|
| @@ -110,7 +110,7 @@ class LocalFileUtilTest : public testing::Test {
|
| }
|
|
|
| FileSystemContext* file_system_context() {
|
| - return file_system_context_;
|
| + return file_system_context_.get();
|
| }
|
|
|
| private:
|
|
|