| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void scheduleLoad(); | 52 void scheduleLoad(); |
| 53 | 53 |
| 54 TextTrack* track(); | 54 TextTrack* track(); |
| 55 | 55 |
| 56 DECLARE_VIRTUAL_TRACE(); | 56 DECLARE_VIRTUAL_TRACE(); |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 explicit HTMLTrackElement(Document&); | 59 explicit HTMLTrackElement(Document&); |
| 60 ~HTMLTrackElement() override; | 60 ~HTMLTrackElement() override; |
| 61 | 61 |
| 62 void parseAttribute(const QualifiedName&, | 62 void parseAttribute(const AttributeModificationParams&) override; |
| 63 const AtomicString&, | |
| 64 const AtomicString&) override; | |
| 65 | 63 |
| 66 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 64 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 67 | 65 |
| 68 void removedFrom(ContainerNode*) override; | 66 void removedFrom(ContainerNode*) override; |
| 69 bool isURLAttribute(const Attribute&) const override; | 67 bool isURLAttribute(const Attribute&) const override; |
| 70 | 68 |
| 71 // TextTrackLoaderClient | 69 // TextTrackLoaderClient |
| 72 void newCuesAvailable(TextTrackLoader*) override; | 70 void newCuesAvailable(TextTrackLoader*) override; |
| 73 void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) override; | 71 void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) override; |
| 74 void newRegionsAvailable(TextTrackLoader*) override; | 72 void newRegionsAvailable(TextTrackLoader*) override; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 88 | 86 |
| 89 Member<LoadableTextTrack> m_track; | 87 Member<LoadableTextTrack> m_track; |
| 90 Member<TextTrackLoader> m_loader; | 88 Member<TextTrackLoader> m_loader; |
| 91 Timer<HTMLTrackElement> m_loadTimer; | 89 Timer<HTMLTrackElement> m_loadTimer; |
| 92 KURL m_url; | 90 KURL m_url; |
| 93 }; | 91 }; |
| 94 | 92 |
| 95 } // namespace blink | 93 } // namespace blink |
| 96 | 94 |
| 97 #endif // HTMLTrackElement_h | 95 #endif // HTMLTrackElement_h |
| OLD | NEW |