| Index: third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
|
| diff --git a/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h b/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
|
| index 8c9b16f7fb587314cf12f7c58e3d87f0da8bc8e8..7ca73966aaa780594c2c5705e75c4f18b4748699 100644
|
| --- a/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
|
| +++ b/third_party/WebKit/Source/core/events/DOMWindowEventQueue.h
|
| @@ -30,8 +30,6 @@
|
| #include "core/events/EventQueue.h"
|
| #include "wtf/HashSet.h"
|
| #include "wtf/ListHashSet.h"
|
| -#include "wtf/OwnPtr.h"
|
| -#include "wtf/RefCounted.h"
|
|
|
| namespace blink {
|
|
|
| @@ -39,13 +37,7 @@ class Event;
|
| class DOMWindowEventQueueTimer;
|
| class ExecutionContext;
|
|
|
| -#if ENABLE(OILPAN)
|
| -#define DOMWINDOWEVENTQUEUE_BASE_CLASSES public EventQueue
|
| -#else
|
| -#define DOMWINDOWEVENTQUEUE_BASE_CLASSES public RefCounted<DOMWindowEventQueue>, public EventQueue
|
| -#endif
|
| -
|
| -class DOMWindowEventQueue final : DOMWINDOWEVENTQUEUE_BASE_CLASSES {
|
| +class DOMWindowEventQueue final : public EventQueue {
|
| public:
|
| static DOMWindowEventQueue* create(ExecutionContext*);
|
| ~DOMWindowEventQueue() override;
|
|
|