Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1935)

Unified Diff: chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc

Issue 243703005: [fsp] [recommit #2] Add an initial AsyncFileUtil. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc
diff --git a/chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc b/chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc
index 2b6b0d83d3f661092c50a16d371987b05242a52b..bb4c74734daf06f9292cc9a45aa1cabc2ecca4ec 100644
--- a/chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc
+++ b/chrome/browser/chromeos/fileapi/file_system_backend_unittest.cc
@@ -42,6 +42,7 @@ TEST(ChromeOSFileSystemBackendTest, DefaultMountPoints) {
fileapi::ExternalMountPoints::CreateRefCounted());
chromeos::FileSystemBackend backend(
NULL, // drive_delegate
+ NULL, // file_system_provider_delegate
storage_policy,
mount_points.get(),
fileapi::ExternalMountPoints::GetSystemInstance());
@@ -68,11 +69,11 @@ TEST(ChromeOSFileSystemBackendTest, GetRootDirectories) {
scoped_refptr<fileapi::ExternalMountPoints> system_mount_points(
fileapi::ExternalMountPoints::CreateRefCounted());
- chromeos::FileSystemBackend backend(
- NULL, // drive_delegate
- storage_policy,
- mount_points.get(),
- system_mount_points.get());
+ chromeos::FileSystemBackend backend(NULL, // drive_delegate
+ NULL, // file_system_provider_delegate
+ storage_policy,
+ mount_points.get(),
+ system_mount_points.get());
const size_t initial_root_dirs_size = backend.GetRootDirectories().size();
@@ -114,11 +115,11 @@ TEST(ChromeOSFileSystemBackendTest, AccessPermissions) {
fileapi::ExternalMountPoints::CreateRefCounted());
scoped_refptr<fileapi::ExternalMountPoints> system_mount_points(
fileapi::ExternalMountPoints::CreateRefCounted());
- chromeos::FileSystemBackend backend(
- NULL, // drive_delegate
- storage_policy,
- mount_points.get(),
- system_mount_points.get());
+ chromeos::FileSystemBackend backend(NULL, // drive_delegate
+ NULL, // file_system_provider_delegate
+ storage_policy,
+ mount_points.get(),
+ system_mount_points.get());
std::string extension("ddammdhioacbehjngdmkjcjbnfginlla");
@@ -214,11 +215,11 @@ TEST(ChromeOSFileSystemBackendTest, GetVirtualPathConflictWithSystemPoints) {
fileapi::ExternalMountPoints::CreateRefCounted());
scoped_refptr<fileapi::ExternalMountPoints> system_mount_points(
fileapi::ExternalMountPoints::CreateRefCounted());
- chromeos::FileSystemBackend backend(
- NULL, // drive_delegate
- storage_policy,
- mount_points.get(),
- system_mount_points.get());
+ chromeos::FileSystemBackend backend(NULL, // drive_delegate
+ NULL, // file_system_provider_delegate
+ storage_policy,
+ mount_points.get(),
+ system_mount_points.get());
const fileapi::FileSystemType type = fileapi::kFileSystemTypeNativeLocal;
const fileapi::FileSystemMountOption option =

Powered by Google App Engine
This is Rietveld 408576698