// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_ #define CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_ #include <list> #include <string> #include <unordered_map> #include "base/gtest_prod_util.h" #include "content/browser/cache_storage/cache_storage.h" #include "content/common/content_export.h" namespace content { // CacheStorageIndex maintains an ordered list of metadata (CacheMetadata) // for each cache owned by a CacheStorage object. This class is not thread safe, // and is owned by the CacheStorage. class CONTENT_EXPORT CacheStorageIndex { … }; } // namespace content #endif // CONTENT_BROWSER_CACHE_STORAGE_CACHE_STORAGE_INDEX_H_