Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: Source/core/html/HTMLMediaElement.h

Issue 539103002: Seeking media fragment URI before loadeddata event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@HAVE_NOTHING
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 573
574 bool m_closedCaptionsVisible : 1; 574 bool m_closedCaptionsVisible : 1;
575 575
576 bool m_completelyLoaded : 1; 576 bool m_completelyLoaded : 1;
577 bool m_havePreparedToPlay : 1; 577 bool m_havePreparedToPlay : 1;
578 bool m_delayingLoadForPreloadNone : 1; 578 bool m_delayingLoadForPreloadNone : 1;
579 579
580 bool m_tracksAreReady : 1; 580 bool m_tracksAreReady : 1;
581 bool m_haveVisibleTextTrack : 1; 581 bool m_haveVisibleTextTrack : 1;
582 bool m_processingPreferenceChange : 1; 582 bool m_processingPreferenceChange : 1;
583 bool m_jumped : 1;
583 #if ENABLE(OILPAN) 584 #if ENABLE(OILPAN)
584 bool m_isFinalizing : 1; 585 bool m_isFinalizing : 1;
585 bool m_closeMediaSourceWhenFinalizing : 1; 586 bool m_closeMediaSourceWhenFinalizing : 1;
586 #endif 587 #endif
587 double m_lastTextTrackUpdateTime; 588 double m_lastTextTrackUpdateTime;
588 589
589 RefPtrWillBeMember<AudioTrackList> m_audioTracks; 590 RefPtrWillBeMember<AudioTrackList> m_audioTracks;
590 RefPtrWillBeMember<VideoTrackList> m_videoTracks; 591 RefPtrWillBeMember<VideoTrackList> m_videoTracks;
591 RefPtrWillBeMember<TextTrackList> m_textTracks; 592 RefPtrWillBeMember<TextTrackList> m_textTracks;
592 WillBeHeapVector<RefPtrWillBeMember<TextTrack> > m_textTracksWhenResourceSel ectionBegan; 593 WillBeHeapVector<RefPtrWillBeMember<TextTrack> > m_textTracksWhenResourceSel ectionBegan;
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 inline bool isHTMLMediaElement(const HTMLElement& element) 635 inline bool isHTMLMediaElement(const HTMLElement& element)
635 { 636 {
636 return isHTMLAudioElement(element) || isHTMLVideoElement(element); 637 return isHTMLAudioElement(element) || isHTMLVideoElement(element);
637 } 638 }
638 639
639 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement); 640 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLMediaElement);
640 641
641 } //namespace 642 } //namespace
642 643
643 #endif 644 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698