// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_BASE_LIST_CONTAINER_HELPER_H_ #define CC_BASE_LIST_CONTAINER_HELPER_H_ #include <stddef.h> #include <memory> #include "base/memory/raw_ptr_exclusion.h" #include "cc/base/base_export.h" namespace cc { // Helper class for ListContainer non-templated logic. All methods are private, // and only exposed to friend classes. // For usage, see comments in ListContainer (list_container.h). class CC_BASE_EXPORT ListContainerHelper final { … }; } // namespace cc #endif // CC_BASE_LIST_CONTAINER_HELPER_H_