Chromium Code Reviews

Unified Diff: Source/core/workers/AbstractWorker.h

Issue 1212643004: [Oilpan] Apply RefCountedGarbageCollectedEventTarget on AbstractWorker (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove some redundant includes Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « Source/core/timing/SharedWorkerPerformance.cpp ('k') | Source/core/workers/AbstractWorker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/workers/AbstractWorker.h
diff --git a/Source/core/workers/AbstractWorker.h b/Source/core/workers/AbstractWorker.h
index 91be9b5eda0abe12e65ae7e701a263e3aad9ad6d..d092c9445dee240f0d1649c9af62bf4a8a5db316 100644
--- a/Source/core/workers/AbstractWorker.h
+++ b/Source/core/workers/AbstractWorker.h
@@ -36,9 +36,7 @@
#include "core/events/EventListener.h"
#include "core/events/EventTarget.h"
#include "platform/heap/Handle.h"
-#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
-#include "wtf/RefPtr.h"
#include "wtf/text/AtomicStringHash.h"
namespace blink {
@@ -47,8 +45,8 @@ class ExceptionState;
class KURL;
class ExecutionContext;
-class CORE_EXPORT AbstractWorker : public EventTargetWithInlineData, public RefCountedWillBeNoBase<AbstractWorker>, public ActiveDOMObject {
- REFCOUNTED_EVENT_TARGET(AbstractWorker);
+class CORE_EXPORT AbstractWorker : public RefCountedGarbageCollectedEventTargetWithInlineData<AbstractWorker>, public ActiveDOMObject {
+ REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(AbstractWorker);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AbstractWorker);
public:
// EventTarget APIs
« no previous file with comments | « Source/core/timing/SharedWorkerPerformance.cpp ('k') | Source/core/workers/AbstractWorker.cpp » ('j') | no next file with comments »

Powered by Google App Engine