#ifndef EXTENSIONS_COMMON_API_POWER_H__
#define EXTENSIONS_COMMON_API_POWER_H__
#include <stdint.h>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "base/values.h"
#include <string_view>
namespace extensions {
namespace api {
namespace power {
enum class Level { … };
const char* ToString(Level as_enum);
Level ParseLevel(std::string_view as_string);
std::u16string GetLevelParseError(std::string_view as_string);
namespace RequestKeepAwake {
struct Params { … };
}
namespace ReleaseKeepAwake {
}
namespace ReportActivity {
namespace Results {
base::Value::List Create();
}
}
}
}
}
#endif