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

Unified Diff: Source/core/html/track/TextTrackCueList.h

Issue 462653002: Oilpan: remove unnecessary TextTrackList finalization. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | Source/core/html/track/TextTrackCueList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackCueList.h
diff --git a/Source/core/html/track/TextTrackCueList.h b/Source/core/html/track/TextTrackCueList.h
index b6cfa365f70d05592ae146e66cdbef90da0761c9..e199fb380a2fa0ebbb358d1cd4e1bd40ddab80c6 100644
--- a/Source/core/html/track/TextTrackCueList.h
+++ b/Source/core/html/track/TextTrackCueList.h
@@ -34,15 +34,14 @@
namespace blink {
-class TextTrackCueList FINAL : public RefCountedWillBeGarbageCollectedFinalized<TextTrackCueList>, public ScriptWrappable {
+class TextTrackCueList FINAL : public RefCountedWillBeGarbageCollected<TextTrackCueList>, public ScriptWrappable {
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(TextTrackCueList);
public:
static PassRefPtrWillBeRawPtr<TextTrackCueList> create()
{
return adoptRefWillBeNoop(new TextTrackCueList);
}
- ~TextTrackCueList() { }
-
unsigned long length() const;
unsigned long getCueIndex(TextTrackCue*) const;
@@ -66,7 +65,6 @@ private:
WillBeHeapVector<RefPtrWillBeMember<TextTrackCue> > m_list;
RefPtrWillBeMember<TextTrackCueList> m_activeCues;
-
};
} // namespace blink
« no previous file with comments | « no previous file | Source/core/html/track/TextTrackCueList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698