| Index: chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| diff --git a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| index 7cf0db1467ab9f9482258b995b3259aecc1d75f2..859bd9b5f6c2dcf02ace6f54ae613bf0350e3f64 100644
|
| --- a/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| +++ b/chrome/browser/sync_file_system/mock_remote_file_sync_service.cc
|
| @@ -11,7 +11,7 @@
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/thread_task_runner_handle.h"
|
| #include "url/gurl.h"
|
| -#include "webkit/browser/fileapi/file_system_url.h"
|
| +#include "storage/browser/fileapi/file_system_url.h"
|
|
|
| using ::testing::_;
|
| using ::testing::Invoke;
|
| @@ -70,7 +70,7 @@ void MockRemoteFileSyncService::NotifyRemoteServiceStateUpdated(
|
| }
|
|
|
| void MockRemoteFileSyncService::NotifyFileStatusChanged(
|
| - const fileapi::FileSystemURL& url,
|
| + const storage::FileSystemURL& url,
|
| SyncFileStatus sync_status,
|
| SyncAction action_taken,
|
| SyncDirection direction) {
|
| @@ -109,8 +109,8 @@ void MockRemoteFileSyncService::ProcessRemoteChangeStub(
|
| const SyncFileCallback& callback) {
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| FROM_HERE,
|
| - base::Bind(callback, SYNC_STATUS_NO_CHANGE_TO_SYNC,
|
| - fileapi::FileSystemURL()));
|
| + base::Bind(
|
| + callback, SYNC_STATUS_NO_CHANGE_TO_SYNC, storage::FileSystemURL()));
|
| }
|
|
|
| RemoteServiceState MockRemoteFileSyncService::GetCurrentStateStub() const {
|
|
|