// 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/ref_counted_fragment.h" #include "third_party/abseil-cpp/absl/base/macros.h" namespace ipcz { RefCountedFragment::RefCountedFragment() = default; void RefCountedFragment::AddRef() { … } int32_t RefCountedFragment::ReleaseRef() { … } } // namespace ipcz