blob: a9583bc43b90215a0976f7818c214cb26aeebf4b [file] [log] [blame]
// Copyright 2019 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef DIAGNOSTICS_WILCO_DTC_SUPPORTD_WILCO_DTC_SUPPORTD_ROUTINE_FACTORY_IMPL_H_
#define DIAGNOSTICS_WILCO_DTC_SUPPORTD_WILCO_DTC_SUPPORTD_ROUTINE_FACTORY_IMPL_H_
#include <memory>
#include <base/macros.h>
#include "diagnostics/wilco_dtc_supportd/wilco_dtc_supportd_routine_factory.h"
#include "wilco_dtc_supportd.pb.h" // NOLINT(build/include)
namespace diagnostics {
// Production implementation of WilcoDtcSupportdRoutineFactory.
class WilcoDtcSupportdRoutineFactoryImpl final
: public WilcoDtcSupportdRoutineFactory {
public:
WilcoDtcSupportdRoutineFactoryImpl();
~WilcoDtcSupportdRoutineFactoryImpl() override;
std::unique_ptr<DiagnosticRoutine> CreateRoutine(
const grpc_api::RunRoutineRequest& request) override;
private:
DISALLOW_COPY_AND_ASSIGN(WilcoDtcSupportdRoutineFactoryImpl);
};
} // namespace diagnostics
#endif // DIAGNOSTICS_WILCO_DTC_SUPPORTD_WILCO_DTC_SUPPORTD_ROUTINE_FACTORY_IMPL_H_