blob: d821efee697050deca72ef090b1144c534a5cc6f [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.
#ifndef RUNTIME_PROBE_FUNCTIONS_WIRELESS_NETWORK_H_
#define RUNTIME_PROBE_FUNCTIONS_WIRELESS_NETWORK_H_
#include <memory>
#include <string>
#include <base/optional.h>
#include "runtime_probe/function_templates/network.h"
namespace runtime_probe {
class WirelessNetworkFunction : public NetworkFunction {
public:
NAME_PROBE_FUNCTION("wireless_network");
static constexpr auto FromKwargsValue =
FromEmptyKwargsValue<WirelessNetworkFunction>;
protected:
base::Optional<std::string> GetNetworkType() const override;
};
} // namespace runtime_probe
#endif // RUNTIME_PROBE_FUNCTIONS_WIRELESS_NETWORK_H_