| Index: content/browser/fileapi/file_system_operation_runner_unittest.cc
|
| diff --git a/content/browser/fileapi/file_system_operation_runner_unittest.cc b/content/browser/fileapi/file_system_operation_runner_unittest.cc
|
| index af5f8e74ba9aa113bae4bc4dbb968bfb4732672a..f6912ae16699259032d17a512830a708888970d3 100644
|
| --- a/content/browser/fileapi/file_system_operation_runner_unittest.cc
|
| +++ b/content/browser/fileapi/file_system_operation_runner_unittest.cc
|
| @@ -8,13 +8,13 @@
|
| #include "base/run_loop.h"
|
| #include "content/public/test/test_file_system_context.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "webkit/browser/fileapi/file_system_context.h"
|
| -#include "webkit/browser/fileapi/file_system_operation_runner.h"
|
| +#include "storage/browser/fileapi/file_system_context.h"
|
| +#include "storage/browser/fileapi/file_system_operation_runner.h"
|
|
|
| -using fileapi::FileSystemContext;
|
| -using fileapi::FileSystemOperationRunner;
|
| -using fileapi::FileSystemType;
|
| -using fileapi::FileSystemURL;
|
| +using storage::FileSystemContext;
|
| +using storage::FileSystemOperationRunner;
|
| +using storage::FileSystemType;
|
| +using storage::FileSystemURL;
|
|
|
| namespace content {
|
|
|
| @@ -56,7 +56,8 @@ class FileSystemOperationRunnerTest : public testing::Test {
|
|
|
| FileSystemURL URL(const std::string& path) {
|
| return file_system_context_->CreateCrackedFileSystemURL(
|
| - GURL("http://example.com"), fileapi::kFileSystemTypeTemporary,
|
| + GURL("http://example.com"),
|
| + storage::kFileSystemTypeTemporary,
|
| base::FilePath::FromUTF8Unsafe(path));
|
| }
|
|
|
|
|