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