#ifndef CHROME_BROWSER_DEVTOOLS_PROTOCOL_SYSTEM_INFO_HANDLER_H_
#define CHROME_BROWSER_DEVTOOLS_PROTOCOL_SYSTEM_INFO_HANDLER_H_
#include "chrome/browser/devtools/protocol/system_info.h"
namespace content {
class protocol;
}
class SystemInfoHandler : public protocol::SystemInfo::Backend {
public:
explicit SystemInfoHandler(protocol::UberDispatcher* dispatcher);
SystemInfoHandler(const SystemInfoHandler&) = delete;
SystemInfoHandler& operator=(const SystemInfoHandler&) = delete;
~SystemInfoHandler() override;
private:
protocol::Response GetFeatureState(const std::string& in_featureState,
bool* featureEnabled) override;
};
#endif