chromium/components/sync/test/fake_data_type_controller_delegate.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_SYNC_TEST_FAKE_DATA_TYPE_CONTROLLER_DELEGATE_H_
#define COMPONENTS_SYNC_TEST_FAKE_DATA_TYPE_CONTROLLER_DELEGATE_H_

#include <memory>
#include <optional>

#include "base/memory/weak_ptr.h"
#include "components/sync/base/data_type.h"
#include "components/sync/engine/data_type_activation_response.h"
#include "components/sync/model/data_type_controller_delegate.h"
#include "components/sync/model/model_error.h"

namespace sync_pb {
class DataTypeState;
}  // namespace sync_pb

namespace syncer {

class FakeDataTypeControllerDelegate : public DataTypeControllerDelegate {};

}  // namespace syncer

#endif  // COMPONENTS_SYNC_TEST_FAKE_DATA_TYPE_CONTROLLER_DELEGATE_H_