Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 |
| OLD | NEW |