#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SPECIAL_STORAGE_POLICY_H_
#include <map>
#include <memory>
#include <string>
#include "base/synchronization/lock.h"
#include "base/task/sequenced_task_runner.h"
#include "base/thread_annotations.h"
#include "extensions/common/extension_set.h"
#include "storage/browser/quota/special_storage_policy.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
class BrowserContext;
}
namespace content_settings {
class CookieSettings;
}
namespace extensions {
class Extension;
}
class ExtensionSpecialStoragePolicy : public storage::SpecialStoragePolicy { … };
#endif