summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h b/chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h
new file mode 100644
index 00000000000..228a4b13597
--- /dev/null
+++ b/chromium/third_party/blink/renderer/modules/wake_lock/wake_lock_event.h
@@ -0,0 +1,41 @@
+// Copyright 2019 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_WAKE_LOCK_WAKE_LOCK_EVENT_H_
+#define THIRD_PARTY_BLINK_RENDERER_MODULES_WAKE_LOCK_WAKE_LOCK_EVENT_H_
+
+#include "third_party/blink/renderer/core/dom/events/event.h"
+#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
+#include "third_party/blink/renderer/platform/wtf/forward.h"
+
+namespace blink {
+
+class WakeLockEventInit;
+class WakeLockSentinel;
+
+class WakeLockEvent final : public Event {
+ DEFINE_WRAPPERTYPEINFO();
+
+ public:
+ static WakeLockEvent* Create(const AtomicString& type,
+ const WakeLockEventInit* initializer);
+
+ WakeLockEvent(const AtomicString& type, const WakeLockEventInit* initializer);
+ WakeLockEvent(const AtomicString& type, WakeLockSentinel* lock);
+ ~WakeLockEvent() override;
+
+ // Web-exposed APIs.
+ WakeLockSentinel* lock() const;
+
+ // Event overrides.
+ const AtomicString& InterfaceName() const override;
+ void Trace(blink::Visitor* visitor) override;
+
+ private:
+ const Member<WakeLockSentinel> lock_;
+};
+
+} // namespace blink
+
+#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_WAKE_LOCK_WAKE_LOCK_EVENT_H_