blob: 4c7fa89439d989aec4f550b7f56d523eda700fdc [file] [log] [blame]
// 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_TYPE_H_
#define IOS_CHROME_BROWSER_UI_SCREEN_SCREEN_TYPE_H_
// The types of the start up screens.
typedef NS_ENUM(NSInteger, ScreenType) {
kSignIn,
kHistorySync,
kTangibleSync,
kDefaultBrowserPromo,
// It isn't a screen, but a signal that no more screen should be
// presented.
kStepsCompleted,
};
#endif // IOS_CHROME_BROWSER_UI_SCREEN_SCREEN_TYPE_H_