#ifndef EXTENSIONS_BROWSER_API_POWER_ACTIVITY_REPORTER_DELEGATE_ASH_H_
#define EXTENSIONS_BROWSER_API_POWER_ACTIVITY_REPORTER_DELEGATE_ASH_H_
#include "extensions/browser/api/power/activity_reporter_delegate.h"
namespace extensions {
class ActivityReporterDelegateAsh : public ActivityReporterDelegate {
public:
ActivityReporterDelegateAsh();
ActivityReporterDelegateAsh(const ActivityReporterDelegateAsh&) = delete;
ActivityReporterDelegateAsh& operator=(const ActivityReporterDelegateAsh&) =
delete;
~ActivityReporterDelegateAsh() override;
std::optional<std::string> ReportActivity() const override;
};
}
#endif