// Copyright 2024 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_LENS_OVERLAY_PUBLIC_LENS_OVERLAY_AVAILABILITY_H_
#define IOS_CHROME_BROWSER_LENS_OVERLAY_PUBLIC_LENS_OVERLAY_AVAILABILITY_H_

class PrefService;

// Returns whether the lens overlay is allowed by policy.
bool IsLensOverlayAllowedByPolicy(const PrefService* prefs);

// Whether the landscape orientation is allowed for Lens Overlay.
bool IsLensOverlayLandscapeOrientationEnabled(const PrefService* prefs);

// Returns whether the lens overlay should open navigation in the same tab
// instead of new tab.
bool IsLensOverlaySameTabNavigationEnabled(const PrefService* prefs);

// Returns whether the escape hatch to LVF is enabled.
bool IsLVFEscapeHatchEnabled(const PrefService* prefs);

// Returns whether the custom bottom sheet implementation is enabled.
bool UseCustomLensOverlayBottomSheet();

#endif  // IOS_CHROME_BROWSER_LENS_OVERLAY_PUBLIC_LENS_OVERLAY_AVAILABILITY_H_
