#ifndef COMPONENTS_SYNC_ENGINE_GET_UPDATES_DELEGATE_H_
#define COMPONENTS_SYNC_ENGINE_GET_UPDATES_DELEGATE_H_
#include <memory>
#include "base/memory/raw_ref.h"
#include "components/sync/engine/cycle/nudge_tracker.h"
#include "components/sync/engine/cycle/status_controller.h"
#include "components/sync/engine/data_type_registry.h"
#include "components/sync/engine/events/protocol_event.h"
namespace sync_pb {
class GetUpdatesMessage;
class ClientToServerMessage;
enum SyncEnums_GetUpdatesOrigin : int;
}
namespace syncer {
class GetUpdatesDelegate { … };
class NormalGetUpdatesDelegate : public GetUpdatesDelegate { … };
class ConfigureGetUpdatesDelegate : public GetUpdatesDelegate { … };
class PollGetUpdatesDelegate : public GetUpdatesDelegate { … };
}
#endif