#ifndef CHROME_BROWSER_EXTENSIONS_THEME_INSTALLED_INFOBAR_DELEGATE_H_
#define CHROME_BROWSER_EXTENSIONS_THEME_INSTALLED_INFOBAR_DELEGATE_H_
#include <memory>
#include <string>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/themes/theme_service.h"
#include "chrome/browser/themes/theme_service_observer.h"
#include "components/infobars/core/confirm_infobar_delegate.h"
#include "extensions/common/extension_id.h"
#include "third_party/skia/include/core/SkColor.h"
namespace infobars {
class ContentInfoBarManager;
}
class Profile;
class ThemeInstalledInfoBarDelegate : public ConfirmInfoBarDelegate,
public ThemeServiceObserver { … };
#endif