// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/containers/linked_list.h" #include "base/check_op.h" namespace base { namespace internal { LinkNodeBase::LinkNodeBase() = default; LinkNodeBase::LinkNodeBase(LinkNodeBase* previous, LinkNodeBase* next) : … { … } LinkNodeBase::LinkNodeBase(LinkNodeBase&& rhs) { … } void LinkNodeBase::RemoveFromList() { … } void LinkNodeBase::InsertBeforeBase(LinkNodeBase* e) { … } void LinkNodeBase::InsertAfterBase(LinkNodeBase* e) { … } } // namespace internal } // namespace base