| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 146 } |
| 147 | 147 |
| 148 const AtomicString& TextTrackCue::interfaceName() const | 148 const AtomicString& TextTrackCue::interfaceName() const |
| 149 { | 149 { |
| 150 return EventTargetNames::TextTrackCue; | 150 return EventTargetNames::TextTrackCue; |
| 151 } | 151 } |
| 152 | 152 |
| 153 DEFINE_TRACE(TextTrackCue) | 153 DEFINE_TRACE(TextTrackCue) |
| 154 { | 154 { |
| 155 visitor->trace(m_track); | 155 visitor->trace(m_track); |
| 156 RefCountedGarbageCollectedEventTargetWithInlineData<TextTrackCue>::trace(vis
itor); | 156 EventTargetWithInlineData::trace(visitor); |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| OLD | NEW |