#ifndef CONTENT_BROWSER_STORAGE_PARTITION_IMPL_MAP_H_
#define CONTENT_BROWSER_STORAGE_PARTITION_IMPL_MAP_H_
#include <map>
#include <memory>
#include <string>
#include <unordered_set>
#include "base/functional/callback_forward.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/supports_user_data.h"
#include "content/browser/storage_partition_impl.h"
#include "content/common/content_export.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/storage_partition_config.h"
namespace base {
class FilePath;
class SequencedTaskRunner;
}
namespace content {
class BrowserContext;
class CONTENT_EXPORT StoragePartitionImplMap
: public base::SupportsUserData::Data { … };
}
#endif