#include "net/socket/socket_tag.h"
#include <tuple>
#include "base/check.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_ANDROID)
#include "net/android/network_library.h"
#endif
namespace net {
#if BUILDFLAG(IS_ANDROID)
enum TrafficStatsUid {
UNSET = -1,
};
static_assert(UNSET == SocketTag::UNSET_UID,
"TrafficStatsUid does not match SocketTag::UNSET_UID");
#endif
bool SocketTag::operator<(const SocketTag& other) const { … }
bool SocketTag::operator==(const SocketTag& other) const { … }
void SocketTag::Apply(SocketDescriptor socket) const { … }
}