// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ipcz/node_name.h" #include <atomic> #include <string> #include <type_traits> #include "third_party/abseil-cpp/absl/base/macros.h" #include "third_party/abseil-cpp/absl/strings/str_cat.h" namespace ipcz { static_assert …; std::string NodeName::ToString() const { … } void NodeName::StoreRelease(const NodeName& name) { … } NodeName NodeName::LoadAcquire() { … } } // namespace ipcz