mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
34 lines
940 B
C++
34 lines
940 B
C++
// Copyright 2018 The Chromium 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 NET_INTERFACES_ADDRESS_LIST_MOJOM_TRAITS_H_
|
|
#define NET_INTERFACES_ADDRESS_LIST_MOJOM_TRAITS_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "mojo/public/cpp/bindings/struct_traits.h"
|
|
#include "net/interfaces/address_list.mojom.h"
|
|
|
|
namespace mojo {
|
|
|
|
template <>
|
|
struct StructTraits<net::interfaces::AddressListDataView, net::AddressList> {
|
|
static const std::vector<net::IPEndPoint>& addresses(
|
|
const net::AddressList& obj) {
|
|
return obj.endpoints();
|
|
}
|
|
|
|
static const std::string& canonical_name(const net::AddressList& obj) {
|
|
return obj.canonical_name();
|
|
}
|
|
|
|
static bool Read(net::interfaces::AddressListDataView data,
|
|
net::AddressList* out);
|
|
};
|
|
|
|
} // namespace mojo
|
|
|
|
#endif // NET_INTERFACES_ADDRESS_LIST_MOJOM_TRAITS_H_
|