910e62b5创建于 1月15日历史提交
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROMEOS_COMPONENTS_KIOSK_KIOSK_UTILS_H_
#define CHROMEOS_COMPONENTS_KIOSK_KIOSK_UTILS_H_

namespace chromeos {

// Returns true if a kiosk session is currently running.
extern bool IsKioskSession();

// Returns true if a Chrome App kiosk is currently running.
extern bool IsChromeAppKioskSession();

// Returns true if a web app (PWA) kiosk is currently running.
extern bool IsWebKioskSession();

// Returns true if a Isolated Web App (IWA) kiosk is currently running.
extern bool IsIwaKioskSession();

}  // namespace chromeos

#endif  // CHROMEOS_COMPONENTS_KIOSK_KIOSK_UTILS_H_