summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/dom/events/event_target.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/dom/events/event_target.h')
-rw-r--r--chromium/third_party/blink/renderer/core/dom/events/event_target.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/blink/renderer/core/dom/events/event_target.h b/chromium/third_party/blink/renderer/core/dom/events/event_target.h
index 9c3f2d35018..0963aaaab0a 100644
--- a/chromium/third_party/blink/renderer/core/dom/events/event_target.h
+++ b/chromium/third_party/blink/renderer/core/dom/events/event_target.h
@@ -37,7 +37,6 @@
#include "base/macros.h"
#include "third_party/blink/public/platform/task_type.h"
#include "third_party/blink/renderer/core/core_export.h"
-#include "third_party/blink/renderer/core/dom/events/add_event_listener_options_resolved.h"
#include "third_party/blink/renderer/core/dom/events/event_dispatch_result.h"
#include "third_party/blink/renderer/core/dom/events/event_listener_map.h"
#include "third_party/blink/renderer/core/event_target_names.h"
@@ -50,6 +49,7 @@
namespace blink {
class AddEventListenerOptionsOrBoolean;
+class AddEventListenerOptionsResolved;
class DOMWindow;
class Event;
class EventListenerOptionsOrBoolean;
@@ -58,10 +58,10 @@ class ExecutionContext;
class LocalDOMWindow;
class MessagePort;
class Node;
+class PortalHost;
class ScriptState;
class ServiceWorker;
class V8EventListener;
-class PortalHost;
struct FiringEventIterator {
DISALLOW_NEW();
@@ -109,8 +109,8 @@ class CORE_EXPORT EventTargetData final
// file.
// - Override EventTarget::interfaceName() and getExecutionContext(). The former
// will typically return EventTargetNames::YourClassName. The latter will
-// return ContextLifecycleObserver::executionContext (if you are an
-// ContextLifecycleObserver)
+// return ExecutionContextLifecycleObserver::executionContext (if you are an
+// ExecutionContextLifecycleObserver)
// or the document you're in.
// - Your trace() method will need to call EventTargetWithInlineData::trace
// depending on the base class of your class.