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