// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IOS_CHROME_BROWSER_FIRST_RUN_FIRST_RUN_CONFIGURATION_H_ #define IOS_CHROME_BROWSER_FIRST_RUN_FIRST_RUN_CONFIGURATION_H_ #import // This class holds the state of the first run flow. @interface FirstRunConfiguration : NSObject @property(nonatomic, assign) BOOL dataReductionEnabled; @property(nonatomic, assign) BOOL dataReductionSwitchToggled; @property(nonatomic, assign) BOOL signInAttempted; @property(nonatomic, assign) BOOL hasSSOAccount; @end #endif // IOS_CHROME_BROWSER_FIRST_RUN_FIRST_RUN_CONFIGURATION_H_