chromium/chrome/browser/ash/lobster/lobster_system_state_provider.h

// 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 CHROME_BROWSER_ASH_LOBSTER_LOBSTER_SYSTEM_STATE_PROVIDER_H_
#define CHROME_BROWSER_ASH_LOBSTER_LOBSTER_SYSTEM_STATE_PROVIDER_H_

namespace ash {
struct LobsterSystemState;
}  // namespace ash

// TODO(b/348280621): Complete enable/disable logic.
class LobsterSystemStateProvider {
 public:
  LobsterSystemStateProvider();
  ~LobsterSystemStateProvider();

  ash::LobsterSystemState GetSystemState();
};

#endif  // CHROME_BROWSER_ASH_LOBSTER_LOBSTER_SYSTEM_STATE_PROVIDER_H_