Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1386)

Unified Diff: Source/core/page/EventSource.h

Issue 1179733009: Always enable Oilpan for EventSource. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: msvc compile fix Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h ('k') | Source/core/page/EventSource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/EventSource.h
diff --git a/Source/core/page/EventSource.h b/Source/core/page/EventSource.h
index 5f54f88c1f4770d72ae1d3cfc756c856f4fdc5bf..a9eb0a1f0b44607cb572ee7c20b3aa08279c4d8e 100644
--- a/Source/core/page/EventSource.h
+++ b/Source/core/page/EventSource.h
@@ -50,13 +50,12 @@ class ResourceResponse;
class TextResourceDecoder;
class ThreadableLoader;
-class EventSource final : public EventTargetWithInlineData, public RefCountedWillBeNoBase<EventSource>, private ThreadableLoaderClient, public ActiveDOMObject {
+class EventSource final : public RefCountedGarbageCollectedEventTargetWithInlineData<EventSource>, private ThreadableLoaderClient, public ActiveDOMObject {
DEFINE_WRAPPERTYPEINFO();
- REFCOUNTED_EVENT_TARGET(EventSource);
+ REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(EventSource);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(EventSource);
- WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(EventSource);
public:
- static PassRefPtrWillBeRawPtr<EventSource> create(ExecutionContext*, const String& url, const EventSourceInit&, ExceptionState&);
+ static EventSource* create(ExecutionContext*, const String& url, const EventSourceInit&, ExceptionState&);
virtual ~EventSource();
static const unsigned long long defaultReconnectDelay;
« no previous file with comments | « Source/core/loader/WorkerLoaderClientBridgeSyncHelper.h ('k') | Source/core/page/EventSource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698