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

Side by Side Diff: third_party/WebKit/Source/core/html/track/TextTrack.cpp

Issue 1973863003: Implement SetWrapperReferenceFrom idl attribute within traceWrappers for media tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add tests Created 4 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
484 DEFINE_TRACE(TextTrack) 484 DEFINE_TRACE(TextTrack)
485 { 485 {
486 visitor->trace(m_cues); 486 visitor->trace(m_cues);
487 visitor->trace(m_activeCues); 487 visitor->trace(m_activeCues);
488 visitor->trace(m_regions); 488 visitor->trace(m_regions);
489 visitor->trace(m_trackList); 489 visitor->trace(m_trackList);
490 TrackBase::trace(visitor); 490 TrackBase::trace(visitor);
491 EventTargetWithInlineData::trace(visitor); 491 EventTargetWithInlineData::trace(visitor);
492 } 492 }
493 493
494 DEFINE_TRACE_WRAPPERS(TextTrack)
495 {
496 visitor->traceWrappers(m_cues);
497 EventTargetWithInlineData::traceWrappers(visitor);
haraken 2016/05/12 16:02:54 I don't think we need to trace this. EventTargetWi
Marcel Hlopko 2016/05/12 16:15:51 You are correct. Removing. There really isn't that
498 }
494 } // namespace blink 499 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/track/TextTrack.h ('k') | third_party/WebKit/Source/core/html/track/TextTrackCueList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698