| Index: chrome/browser/sync_file_system/local_file_sync_service_unittest.cc
|
| diff --git a/chrome/browser/sync_file_system/local_file_sync_service_unittest.cc b/chrome/browser/sync_file_system/local_file_sync_service_unittest.cc
|
| index 59722dcc81bc03a08b2a6d0247453483f894aed1..362769b66fd47102f7af4ef678eabf965334dadc 100644
|
| --- a/chrome/browser/sync_file_system/local_file_sync_service_unittest.cc
|
| +++ b/chrome/browser/sync_file_system/local_file_sync_service_unittest.cc
|
| @@ -26,6 +26,7 @@
|
| #include "webkit/browser/fileapi/syncable/sync_file_metadata.h"
|
| #include "webkit/browser/fileapi/syncable/sync_status_code.h"
|
| #include "webkit/browser/fileapi/syncable/syncable_file_system_util.h"
|
| +#include "webkit/browser/fileapi/syncable/syncable_sandbox_mount_point_provider.h"
|
|
|
| using fileapi::FileSystemURL;
|
| using ::testing::_;
|
| @@ -124,7 +125,7 @@ class LocalFileSyncServiceTest
|
|
|
| EXPECT_EQ(base::PLATFORM_FILE_OK, file_system_->OpenFileSystem());
|
|
|
| - file_system_->file_system_context()->sync_context()->
|
| + file_system_->mount_provider()->sync_context()->
|
| set_mock_notify_changes_duration_in_sec(0);
|
| }
|
|
|
| @@ -170,7 +171,7 @@ class LocalFileSyncServiceTest
|
| }
|
|
|
| int64 GetNumChangesInTracker() const {
|
| - return file_system_->file_system_context()->change_tracker()->num_changes();
|
| + return file_system_->mount_provider()->change_tracker()->num_changes();
|
| }
|
|
|
| ScopedEnableSyncFSDirectoryOperation enable_directory_operation_;
|
| @@ -290,7 +291,7 @@ TEST_F(LocalFileSyncServiceTest, MAYBE_LocalChangeObserverMultipleContexts) {
|
| run_loop.Run();
|
|
|
| EXPECT_EQ(base::PLATFORM_FILE_OK, file_system2.OpenFileSystem());
|
| - file_system2.file_system_context()->sync_context()->
|
| + file_system2.mount_provider()->sync_context()->
|
| set_mock_notify_changes_duration_in_sec(0);
|
|
|
| const FileSystemURL kFile1(file_system_->URL("file1"));
|
|
|