blob: 877349c5643e411b14abd9162548afd5fc923367 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_POWER_POWER_STATUS_CONTROLLER_H_
#define ASH_SYSTEM_POWER_POWER_STATUS_CONTROLLER_H_
namespace ash {
struct PowerSupplyStatus;
class PowerStatusController {
public:
virtual ~PowerStatusController() {}
virtual void OnPowerStatusChanged(const PowerSupplyStatus& status) = 0;
};
};
#endif // ASH_SYSTEM_POWER_POWER_STATUS_CONTROLLER_H_
|