// 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 "util/ref_counted.h" #include "third_party/abseil-cpp/absl/base/macros.h" namespace ipcz::internal { RefCountedBase::RefCountedBase() = default; RefCountedBase::~RefCountedBase() = default; void RefCountedBase::AcquireImpl() { … } bool RefCountedBase::ReleaseImpl() { … } } // namespace ipcz::internal