Chromium Code Reviews| Index: Source/core/dom/EventHandlerRegistry.h |
| diff --git a/Source/core/dom/EventHandlerRegistry.h b/Source/core/dom/EventHandlerRegistry.h |
| index 28191b73ed06d48ff07e5a5eba026f7cfd4ea579..e010dbdaa4c1abb00bda03184b9babdf7e919e1e 100644 |
| --- a/Source/core/dom/EventHandlerRegistry.h |
| +++ b/Source/core/dom/EventHandlerRegistry.h |
| @@ -16,7 +16,8 @@ typedef HashCountedSet<EventTarget*> EventTargetSet; |
| // Registry for keeping track of event handlers. Handlers can either be |
| // associated with an EventTarget or be "external" handlers which live outside |
| // the DOM (e.g., WebViewImpl). |
| -class EventHandlerRegistry FINAL : public DocumentSupplement { |
| +class EventHandlerRegistry FINAL : public NoBaseWillBeGarbageCollectedFinalized<EventHandlerRegistry>, public DocumentSupplement { |
|
Mads Ager (chromium)
2014/04/29 14:56:09
Similarly to SpeechInput, this has weak processing
zerny-chromium
2014/04/29 15:10:36
Missed that one. Done.
|
| + WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(EventHandlerRegistry); |
| public: |
| virtual ~EventHandlerRegistry(); |