WorkerNavigator.h 525 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2022, Andrew Kaster <akaster@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/RefCounted.h>
  8. #include <LibWeb/Bindings/Wrappable.h>
  9. #include <LibWeb/Forward.h>
  10. namespace Web::HTML {
  11. // FIXME: Add Mixin APIs from https://html.spec.whatwg.org/multipage/workers.html#the-workernavigator-object
  12. class WorkerNavigator
  13. : public RefCounted<WorkerNavigator>
  14. , public Bindings::Wrappable {
  15. public:
  16. using WrapperType = Bindings::WorkerNavigatorWrapper;
  17. };
  18. }