chromium/ios/chrome/browser/ui/settings/privacy/privacy_guide/privacy_guide_welcome_view_controller.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_SETTINGS_PRIVACY_PRIVACY_GUIDE_PRIVACY_GUIDE_WELCOME_VIEW_CONTROLLER_H_
#define IOS_CHROME_BROWSER_UI_SETTINGS_PRIVACY_PRIVACY_GUIDE_PRIVACY_GUIDE_WELCOME_VIEW_CONTROLLER_H_

#import <UIKit/UIKit.h>

#import "ios/chrome/common/ui/promo_style/promo_style_view_controller.h"

@protocol PrivacyGuideWelcomeViewControllerPresentationDelegate;

// View controller for the Privacy Guide Welcome step.
@interface PrivacyGuideWelcomeViewController : PromoStyleViewController

// Presentation delegate.
@property(nonatomic, weak)
    id<PrivacyGuideWelcomeViewControllerPresentationDelegate>
        presentationDelegate;
@end

#endif  // IOS_CHROME_BROWSER_UI_SETTINGS_PRIVACY_PRIVACY_GUIDE_PRIVACY_GUIDE_WELCOME_VIEW_CONTROLLER_H_