#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_
#define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYSTEM_IMPL_H_
#include <string>
#include "base/memory/raw_ptr.h"
#include "base/one_shot_event.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/unloaded_extension_reason.h"
class Profile;
#if BUILDFLAG(IS_CHROMEOS_ASH)
namespace chromeos {
class DeviceLocalAccountManagementPolicyProvider;
class SigninScreenPolicyProvider;
}
#endif
namespace value_store {
class ValueStoreFactory;
class ValueStoreFactoryImpl;
}
namespace extensions {
class ExtensionSystemSharedFactory;
class UninstallPingSender;
class InstallGate;
class ExtensionsPermissionsTracker;
class ExtensionSystemImpl : public ExtensionSystem { … };
}
#endif