| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 2406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2417 bool HTMLMediaElement::isInteractiveContent() const | 2417 bool HTMLMediaElement::isInteractiveContent() const |
| 2418 { | 2418 { |
| 2419 return hasAttribute(HTMLNames::controlsAttr); | 2419 return hasAttribute(HTMLNames::controlsAttr); |
| 2420 } | 2420 } |
| 2421 | 2421 |
| 2422 void HTMLMediaElement::defaultEventHandler(Event* event) | 2422 void HTMLMediaElement::defaultEventHandler(Event* event) |
| 2423 { | 2423 { |
| 2424 HTMLElement::defaultEventHandler(event); | 2424 HTMLElement::defaultEventHandler(event); |
| 2425 } | 2425 } |
| 2426 | 2426 |
| 2427 void HTMLMediaElement::trace(Visitor* visitor) | |
| 2428 { | |
| 2429 visitor->trace(m_playedTimeRanges); | |
| 2430 visitor->trace(m_asyncEventQueue); | |
| 2431 visitor->trace(m_error); | |
| 2432 visitor->trace(m_currentSourceNode); | |
| 2433 visitor->trace(m_nextChildNodeToConsider); | |
| 2434 visitor->trace(m_mediaSource); | |
| 2435 Supplementable<HTMLMediaElement>::trace(visitor); | |
| 2436 HTMLElement::trace(visitor); | |
| 2437 } | 2427 } |
| 2438 | |
| 2439 } | |
| OLD | NEW |