#ifndef APPS_APP_RESTORE_SERVICE_H_
#define APPS_APP_RESTORE_SERVICE_H_
#include "apps/app_lifetime_monitor.h"
#include "base/memory/raw_ptr.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "extensions/common/extension_id.h"
namespace extensions {
class Extension;
}
namespace content {
class BrowserContext;
}
namespace apps {
class AppRestoreService : public KeyedService,
public AppLifetimeMonitor::Observer { … };
}
#endif