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

Unified Diff: Source/core/loader/appcache/ApplicationCache.h

Issue 307433003: Oilpan: Allocate all EventTarget derived types on the manged heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 7 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/html/track/TextTrackList.cpp ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/appcache/ApplicationCache.h
diff --git a/Source/core/loader/appcache/ApplicationCache.h b/Source/core/loader/appcache/ApplicationCache.h
index 7d0ae3b64f7650d30f7492ca4bb450a29f4ed2de..3f2efec95d3bebd551562260b2295a332fde1be7 100644
--- a/Source/core/loader/appcache/ApplicationCache.h
+++ b/Source/core/loader/appcache/ApplicationCache.h
@@ -42,7 +42,8 @@ class LocalFrame;
class KURL;
class ApplicationCache FINAL : public RefCountedWillBeRefCountedGarbageCollected<ApplicationCache>, public ScriptWrappable, public EventTargetWithInlineData, public DOMWindowProperty {
- DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<ApplicationCache>);
+ REFCOUNTED_EVENT_TARGET(ApplicationCache);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ApplicationCache);
public:
static PassRefPtrWillBeRawPtr<ApplicationCache> create(LocalFrame* frame)
{
@@ -73,8 +74,6 @@ public:
static const AtomicString& toEventType(ApplicationCacheHost::EventID);
- void trace(Visitor*) { }
-
private:
explicit ApplicationCache(LocalFrame*);
« no previous file with comments | « Source/core/html/track/TextTrackList.cpp ('k') | Source/core/page/EventSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698