// 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. #include "services/device/serial/fake_serial_device_enumerator.h" #include <utility> #include "base/not_fatal_until.h" namespace device { FakeSerialEnumerator::FakeSerialEnumerator() = default; FakeSerialEnumerator::~FakeSerialEnumerator() = default; void FakeSerialEnumerator::AddDevicePath(const base::FilePath& path) { … } void FakeSerialEnumerator::RemoveDevicePath(const base::FilePath& path) { … } } // namespace device