#ifndef THIRD_PARTY_BLINK_RENDERER_EXTENSIONS_CHROMEOS_CHROMEOS_H_
#define THIRD_PARTY_BLINK_RENDERER_EXTENSIONS_CHROMEOS_CHROMEOS_H_
#include "third_party/blink/renderer/core/execution_context/execution_context.h"
#include "third_party/blink/renderer/extensions/chromeos/extensions_chromeos_export.h"
#include "third_party/blink/renderer/extensions/chromeos/kiosk/cros_kiosk.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class EXTENSIONS_CHROMEOS_EXPORT ChromeOS : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
ChromeOS();
CrosKiosk* kiosk(ExecutionContext*);
void Trace(Visitor*) const override;
};
}
#endif