#ifndef CHROME_BROWSER_EXTENSIONS_UNPACKED_INSTALLER_H_
#define CHROME_BROWSER_EXTENSIONS_UNPACKED_INSTALLER_H_
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
#include "base/files/file_path.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/values.h"
#include "extensions/browser/preload_check.h"
#include "extensions/common/manifest.h"
class Profile;
namespace extensions {
class Extension;
class ExtensionService;
class PreloadCheckGroup;
class UnpackedInstaller
: public base::RefCountedThreadSafe<UnpackedInstaller> { … };
}
#endif