chromium/ios/chrome/browser/ui/screen/screen_provider.h

// Copyright 2021 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_SCREEN_SCREEN_PROVIDER_H_
#define IOS_CHROME_BROWSER_UI_SCREEN_SCREEN_PROVIDER_H_

#import <Foundation/Foundation.h>

#import "ios/chrome/browser/ui/screen/screen_type.h"

// The class that provides a list of screens.
@interface ScreenProvider : NSObject

- (instancetype)init NS_UNAVAILABLE;

// Returns the screen type of next screen. This method should stopped being
// called when the screen type is kStepsCompleted.
- (ScreenType)nextScreenType;

@end

#endif  // IOS_CHROME_BROWSER_UI_SCREEN_SCREEN_PROVIDER_H_