Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(923)

Unified Diff: third_party/WebKit/Source/modules/eventsource/EventSource.h

Issue 2577053002: ActiveScriptWrappable: GC wrappers in detached ExecutionContexts. (Closed)
Patch Set: component build fix(msvc) Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/eventsource/EventSource.h
diff --git a/third_party/WebKit/Source/modules/eventsource/EventSource.h b/third_party/WebKit/Source/modules/eventsource/EventSource.h
index cfdcea36c574f71af6b5abe709c9e9f9e797fd40..44e133b31b4474e9a124fcdf651f6a725174f197 100644
--- a/third_party/WebKit/Source/modules/eventsource/EventSource.h
+++ b/third_party/WebKit/Source/modules/eventsource/EventSource.h
@@ -51,11 +51,12 @@ class EventSourceInit;
class ExceptionState;
class ResourceResponse;
-class MODULES_EXPORT EventSource final : public EventTargetWithInlineData,
- private ThreadableLoaderClient,
- public ActiveScriptWrappable,
- public SuspendableObject,
- public EventSourceParser::Client {
+class MODULES_EXPORT EventSource final
+ : public EventTargetWithInlineData,
+ private ThreadableLoaderClient,
+ public ActiveScriptWrappable<EventSource>,
+ public SuspendableObject,
+ public EventSourceParser::Client {
DEFINE_WRAPPERTYPEINFO();
USING_GARBAGE_COLLECTED_MIXIN(EventSource);

Powered by Google App Engine
This is Rietveld 408576698