| Index: third_party/WebKit/Source/core/events/EventTarget.h
|
| diff --git a/third_party/WebKit/Source/core/events/EventTarget.h b/third_party/WebKit/Source/core/events/EventTarget.h
|
| index 366bc3fecdc6f39ba2a4917ae587f504b3f20220..56b05446fe18983ecfe9958d116b42021dbec197 100644
|
| --- a/third_party/WebKit/Source/core/events/EventTarget.h
|
| +++ b/third_party/WebKit/Source/core/events/EventTarget.h
|
| @@ -44,7 +44,6 @@
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/text/AtomicString.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -79,7 +78,7 @@ public:
|
| DECLARE_TRACE();
|
|
|
| EventListenerMap eventListenerMap;
|
| - std::unique_ptr<FiringEventIteratorVector> firingEventIterators;
|
| + OwnPtr<FiringEventIteratorVector> firingEventIterators;
|
| };
|
|
|
| // This is the base class for all DOM event targets. To make your class an
|
|
|