blob: 9af994790018047af5ec0b2f017bba5827aa1759 [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.
#include "diagnostics/wilco_dtc_supportd/telemetry/fake_ec_service.h"
namespace diagnostics {
FakeEcService::FakeEcService() = default;
FakeEcService::~FakeEcService() = default;
void FakeEcService::EmitEcEvent(const EcService::EcEvent& ec_event) const {
for (auto& observer : observers_) {
observer.OnEcEvent(ec_event);
}
}
} // namespace diagnostics