blob: 877143a0093a7065ed93d1dea504a7e206f9376c [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/wireless_network.h"
#include <chromeos/dbus/shill/dbus-constants.h>
#include <optional>
namespace runtime_probe {
std::optional<std::string> WirelessNetworkFunction::GetNetworkType() const {
return shill::kTypeWifi;
}
} // namespace runtime_probe