// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_SYSTEM_SYSTEM_MONITOR_H_ #define BASE_SYSTEM_SYSTEM_MONITOR_H_ #include "base/base_export.h" #include "base/observer_list_threadsafe.h" #include "build/build_config.h" namespace base { // Class for monitoring various system-related subsystems // such as power management, network status, etc. // TODO(mbelshe): Add support beyond just power management. class BASE_EXPORT SystemMonitor { … }; } // namespace base #endif // BASE_SYSTEM_SYSTEM_MONITOR_H_