// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40284755): Remove this and spanify to fix the errors. #pragma allow_unsafe_buffers #endif #ifndef NET_DISK_CACHE_BLOCKFILE_BITMAP_H_ #define NET_DISK_CACHE_BLOCKFILE_BITMAP_H_ #include <stdint.h> #include <string.h> #include <memory> #include "base/containers/span.h" #include "base/memory/raw_ptr.h" #include "net/base/net_export.h" namespace disk_cache { // This class provides support for simple maps of bits. class NET_EXPORT_PRIVATE Bitmap { … }; } // namespace disk_cache #endif // NET_DISK_CACHE_BLOCKFILE_BITMAP_H_