#ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_SYNC_WORKER_H_
#define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_FAKE_SYNC_WORKER_H_
#include <map>
#include <memory>
#include <string>
#include "base/functional/callback.h"
#include "base/observer_list.h"
#include "base/sequence_checker.h"
#include "chrome/browser/sync_file_system/drive_backend/sync_worker_interface.h"
#include "chrome/browser/sync_file_system/remote_file_sync_service.h"
#include "chrome/browser/sync_file_system/sync_callbacks.h"
#include "net/base/network_change_notifier.h"
class GURL;
namespace base {
class FilePath;
}
namespace storage {
class FileSystemURL;
}
namespace sync_file_system {
class FileChange;
class SyncFileMetadata;
namespace drive_backend {
class RemoteChangeProcessorOnWorker;
class SyncEngineContext;
class FakeSyncWorker : public SyncWorkerInterface { … };
}
}
#endif