blob: 5878496c1d87c9588e587cf85d5222738438f0e9 [file] [log] [blame]
// Copyright 2020 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 "runtime_probe/functions/cellular_network.h"
#include <chromeos/dbus/shill/dbus-constants.h>
#include <optional>
namespace runtime_probe {
std::optional<std::string> CellularNetworkFunction::GetNetworkType() const {
return shill::kTypeCellular;
}
} // namespace runtime_probe