// Copyright 2025 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_READER_MODE_TEST_READER_MODE_APP_INTERFACE_H_
#define IOS_CHROME_BROWSER_READER_MODE_TEST_READER_MODE_APP_INTERFACE_H_

#import <Foundation/Foundation.h>

// Test app interface for the reader mode feature.
@interface ReaderModeAppInterface : NSObject

// Returns whether the Reader mode WebState is ready in the current tab.
+ (bool)readerModeWebStateIsReady;

// Shows Reader mode in the current tab.
+ (void)showReaderMode;

// Hides Reader mode in the current tab.
+ (void)hideReaderMode;

@end

#endif  // IOS_CHROME_BROWSER_READER_MODE_TEST_READER_MODE_APP_INTERFACE_H_
