chromium/ios/chrome/browser/ui/main_content/test/test_main_content_ui_state.h

// Copyright 2017 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_MAIN_CONTENT_TEST_TEST_MAIN_CONTENT_UI_STATE_H_
#define IOS_CHROME_BROWSER_UI_MAIN_CONTENT_TEST_TEST_MAIN_CONTENT_UI_STATE_H_

#import "ios/chrome/browser/ui/main_content/main_content_ui_state.h"

// A test version of MainContentUIState that can be updated directly without
// the use of a MainContentUIStateUpdater.
@interface TestMainContentUIState : MainContentUIState

// Redefine broadcast properties as readwrite.
@property(nonatomic, assign) CGFloat yContentOffset;

@end

#endif  // IOS_CHROME_BROWSER_UI_MAIN_CONTENT_TEST_TEST_MAIN_CONTENT_UI_STATE_H_