#ifndef CONTENT_BROWSER_POWER_PROFILER_POWER_PROFILER_OBSERVER_H_
#define CONTENT_BROWSER_POWER_PROFILER_POWER_PROFILER_OBSERVER_H_
#include <vector>
#include "base/basictypes.h"
#include "content/common/content_export.h"
namespace content {
struct PowerEvent;
typedef std::vector<PowerEvent> PowerEventVector;
class CONTENT_EXPORT PowerProfilerObserver {
public:
PowerProfilerObserver() {}
virtual ~PowerProfilerObserver() {}
virtual void OnPowerEvent(const PowerEventVector&) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(PowerProfilerObserver);
};
}
#endif