| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "storage/browser/fileapi/file_system_context.h" | 5 #include "storage/browser/fileapi/file_system_context.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/files/scoped_temp_dir.h" | 9 #include "base/files/scoped_temp_dir.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
| 12 #include "base/test/scoped_task_environment.h" | 12 #include "base/test/scoped_task_environment.h" |
| 13 #include "base/threading/thread_task_runner_handle.h" | 13 #include "base/threading/thread_task_runner_handle.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "content/browser/quota/mock_quota_manager.h" | |
| 16 #include "storage/browser/fileapi/external_mount_points.h" | 15 #include "storage/browser/fileapi/external_mount_points.h" |
| 17 #include "storage/browser/fileapi/file_system_backend.h" | 16 #include "storage/browser/fileapi/file_system_backend.h" |
| 18 #include "storage/browser/fileapi/isolated_context.h" | 17 #include "storage/browser/fileapi/isolated_context.h" |
| 18 #include "storage/browser/test/mock_quota_manager.h" |
| 19 #include "storage/browser/test/mock_special_storage_policy.h" | 19 #include "storage/browser/test/mock_special_storage_policy.h" |
| 20 #include "storage/browser/test/test_file_system_options.h" | 20 #include "storage/browser/test/test_file_system_options.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 22 |
| 23 #define FPL(x) FILE_PATH_LITERAL(x) | 23 #define FPL(x) FILE_PATH_LITERAL(x) |
| 24 | 24 |
| 25 #if defined(FILE_PATH_USES_DRIVE_LETTERS) | 25 #if defined(FILE_PATH_USES_DRIVE_LETTERS) |
| 26 #define DRIVE FPL("C:") | 26 #define DRIVE FPL("C:") |
| 27 #else | 27 #else |
| 28 #define DRIVE | 28 #define DRIVE |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 storage::kFileSystemTypeForTransientFile)); | 383 storage::kFileSystemTypeForTransientFile)); |
| 384 EXPECT_TRUE(file_system_context->GetFileSystemBackend( | 384 EXPECT_TRUE(file_system_context->GetFileSystemBackend( |
| 385 storage::kFileSystemTypeNativeLocal)); | 385 storage::kFileSystemTypeNativeLocal)); |
| 386 EXPECT_TRUE(file_system_context->GetFileSystemBackend( | 386 EXPECT_TRUE(file_system_context->GetFileSystemBackend( |
| 387 storage::kFileSystemTypeNativeForPlatformApp)); | 387 storage::kFileSystemTypeNativeForPlatformApp)); |
| 388 } | 388 } |
| 389 | 389 |
| 390 } // namespace | 390 } // namespace |
| 391 | 391 |
| 392 } // namespace content | 392 } // namespace content |
| OLD | NEW |