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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 void textTrackAddCues(TextTrack*, const TextTrackCueList*); | 228 void textTrackAddCues(TextTrack*, const TextTrackCueList*); |
229 void textTrackRemoveCues(TextTrack*, const TextTrackCueList*); | 229 void textTrackRemoveCues(TextTrack*, const TextTrackCueList*); |
230 void textTrackAddCue(TextTrack*, PassRefPtrWillBeRawPtr<TextTrackCue>); | 230 void textTrackAddCue(TextTrack*, PassRefPtrWillBeRawPtr<TextTrackCue>); |
231 void textTrackRemoveCue(TextTrack*, PassRefPtrWillBeRawPtr<TextTrackCue>); | 231 void textTrackRemoveCue(TextTrack*, PassRefPtrWillBeRawPtr<TextTrackCue>); |
232 | 232 |
233 // EventTarget function. | 233 // EventTarget function. |
234 // Both Node (via HTMLElement) and ActiveDOMObject define this method, which | 234 // Both Node (via HTMLElement) and ActiveDOMObject define this method, which |
235 // causes an ambiguity error at compile time. This class's constructor | 235 // causes an ambiguity error at compile time. This class's constructor |
236 // ensures that both implementations return document, so return the result | 236 // ensures that both implementations return document, so return the result |
237 // of one of them here. | 237 // of one of them here. |
238 virtual ExecutionContext* executionContext() const OVERRIDE FINAL { return H
TMLElement::executionContext(); } | 238 using HTMLElement::executionContext; |
239 | 239 |
240 bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSing
leSecurityOrigin(); } | 240 bool hasSingleSecurityOrigin() const { return !m_player || m_player->hasSing
leSecurityOrigin(); } |
241 | 241 |
242 bool isFullscreen() const; | 242 bool isFullscreen() const; |
243 void enterFullscreen(); | 243 void enterFullscreen(); |
244 void exitFullscreen(); | 244 void exitFullscreen(); |
245 | 245 |
246 bool hasClosedCaptions() const; | 246 bool hasClosedCaptions() const; |
247 bool closedCaptionsVisible() const; | 247 bool closedCaptionsVisible() const; |
248 void setClosedCaptionsVisible(bool); | 248 void setClosedCaptionsVisible(bool); |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 inline bool isHTMLMediaElement(const HTMLElement& element) | 563 inline bool isHTMLMediaElement(const HTMLElement& element) |
564 { | 564 { |
565 return isHTMLAudioElement(element) || isHTMLVideoElement(element); | 565 return isHTMLAudioElement(element) || isHTMLVideoElement(element); |
566 } | 566 } |
567 | 567 |
568 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); | 568 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); |
569 | 569 |
570 } //namespace | 570 } //namespace |
571 | 571 |
572 #endif | 572 #endif |
OLD | NEW |