| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 74 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 75 | 75 |
| 76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 77 | 77 |
| 78 virtual void removedFrom(ContainerNode*) OVERRIDE; | 78 virtual void removedFrom(ContainerNode*) OVERRIDE; |
| 79 virtual bool isURLAttribute(const Attribute&) const OVERRIDE; | 79 virtual bool isURLAttribute(const Attribute&) const OVERRIDE; |
| 80 | 80 |
| 81 void loadTimerFired(Timer<HTMLTrackElement>*); | 81 void loadTimerFired(Timer<HTMLTrackElement>*); |
| 82 | 82 |
| 83 #if ENABLE(MICRODATA) | |
| 84 virtual String itemValueText() const OVERRIDE; | |
| 85 virtual void setItemValueText(const String&, ExceptionCode&) OVERRIDE; | |
| 86 #endif | |
| 87 | |
| 88 HTMLMediaElement* mediaElement() const; | 83 HTMLMediaElement* mediaElement() const; |
| 89 | 84 |
| 90 // TextTrackClient | 85 // TextTrackClient |
| 91 virtual void textTrackModeChanged(TextTrack*); | 86 virtual void textTrackModeChanged(TextTrack*); |
| 92 virtual void textTrackKindChanged(TextTrack*); | 87 virtual void textTrackKindChanged(TextTrack*); |
| 93 virtual void textTrackAddCues(TextTrack*, const TextTrackCueList*); | 88 virtual void textTrackAddCues(TextTrack*, const TextTrackCueList*); |
| 94 virtual void textTrackRemoveCues(TextTrack*, const TextTrackCueList*); | 89 virtual void textTrackRemoveCues(TextTrack*, const TextTrackCueList*); |
| 95 virtual void textTrackAddCue(TextTrack*, PassRefPtr<TextTrackCue>); | 90 virtual void textTrackAddCue(TextTrack*, PassRefPtr<TextTrackCue>); |
| 96 virtual void textTrackRemoveCue(TextTrack*, PassRefPtr<TextTrackCue>); | 91 virtual void textTrackRemoveCue(TextTrack*, PassRefPtr<TextTrackCue>); |
| 97 | 92 |
| 98 LoadableTextTrack* ensureTrack(); | 93 LoadableTextTrack* ensureTrack(); |
| 99 virtual bool canLoadUrl(const KURL&); | 94 virtual bool canLoadUrl(const KURL&); |
| 100 | 95 |
| 101 RefPtr<LoadableTextTrack> m_track; | 96 RefPtr<LoadableTextTrack> m_track; |
| 102 Timer<HTMLTrackElement> m_loadTimer; | 97 Timer<HTMLTrackElement> m_loadTimer; |
| 103 }; | 98 }; |
| 104 | 99 |
| 105 } | 100 } |
| 106 | 101 |
| 107 #endif | 102 #endif |
| 108 #endif | 103 #endif |
| OLD | NEW |