summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/hid/hid_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/hid/hid_device.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/hid/hid_device.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/modules/hid/hid_device.h b/chromium/third_party/blink/renderer/modules/hid/hid_device.h
index 3c6eaf79ca4..d4126a559f9 100644
--- a/chromium/third_party/blink/renderer/modules/hid/hid_device.h
+++ b/chromium/third_party/blink/renderer/modules/hid/hid_device.h
@@ -13,7 +13,7 @@
#include "third_party/blink/renderer/bindings/core/v8/array_buffer_or_array_buffer_view.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise.h"
#include "third_party/blink/renderer/core/dom/events/event_target.h"
-#include "third_party/blink/renderer/core/execution_context/context_lifecycle_observer.h"
+#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/heap_allocator.h"
@@ -31,7 +31,7 @@ class ScriptState;
class MODULES_EXPORT HIDDevice
: public EventTargetWithInlineData,
- public ContextLifecycleObserver,
+ public ExecutionContextLifecycleObserver,
public device::mojom::blink::HidConnectionClient {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(HIDDevice);
@@ -69,8 +69,8 @@ class MODULES_EXPORT HIDDevice
const ArrayBufferOrArrayBufferView& data);
ScriptPromise receiveFeatureReport(ScriptState*, uint8_t report_id);
- // ContextLifecycleObserver:
- void ContextDestroyed(ExecutionContext*) override;
+ // ExecutionContextLifecycleObserver:
+ void ContextDestroyed() override;
void Trace(Visitor*) override;
void Dispose();