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

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

Issue 962923002: Ideas for text track container follow-up Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase and ramble Created 5 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/html/track/TextTrackContainer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 27 matching lines...) Expand all
38 #include "core/dom/Fullscreen.h" 38 #include "core/dom/Fullscreen.h"
39 #include "core/dom/shadow/ShadowRoot.h" 39 #include "core/dom/shadow/ShadowRoot.h"
40 #include "core/events/Event.h" 40 #include "core/events/Event.h"
41 #include "core/frame/LocalFrame.h" 41 #include "core/frame/LocalFrame.h"
42 #include "core/frame/Settings.h" 42 #include "core/frame/Settings.h"
43 #include "core/frame/UseCounter.h" 43 #include "core/frame/UseCounter.h"
44 #include "core/frame/csp/ContentSecurityPolicy.h" 44 #include "core/frame/csp/ContentSecurityPolicy.h"
45 #include "core/html/HTMLMediaSource.h" 45 #include "core/html/HTMLMediaSource.h"
46 #include "core/html/HTMLSourceElement.h" 46 #include "core/html/HTMLSourceElement.h"
47 #include "core/html/HTMLTrackElement.h" 47 #include "core/html/HTMLTrackElement.h"
48 #include "core/html/HTMLVideoElement.h"
48 #include "core/html/MediaController.h" 49 #include "core/html/MediaController.h"
49 #include "core/html/MediaError.h" 50 #include "core/html/MediaError.h"
50 #include "core/html/MediaFragmentURIParser.h" 51 #include "core/html/MediaFragmentURIParser.h"
51 #include "core/html/TimeRanges.h" 52 #include "core/html/TimeRanges.h"
52 #include "core/html/shadow/MediaControls.h" 53 #include "core/html/shadow/MediaControls.h"
53 #include "core/html/track/AudioTrack.h" 54 #include "core/html/track/AudioTrack.h"
54 #include "core/html/track/AudioTrackList.h" 55 #include "core/html/track/AudioTrackList.h"
55 #include "core/html/track/AutomaticTrackSelection.h" 56 #include "core/html/track/AutomaticTrackSelection.h"
56 #include "core/html/track/CueTimeline.h" 57 #include "core/html/track/CueTimeline.h"
57 #include "core/html/track/InbandTextTrack.h" 58 #include "core/html/track/InbandTextTrack.h"
(...skipping 3163 matching lines...) Expand 10 before | Expand all | Expand 10 after
3221 3222
3222 assertShadowRootChildren(shadowRoot); 3223 assertShadowRootChildren(shadowRoot);
3223 3224
3224 return *textTrackContainer; 3225 return *textTrackContainer;
3225 } 3226 }
3226 3227
3227 void HTMLMediaElement::updateTextTrackDisplay() 3228 void HTMLMediaElement::updateTextTrackDisplay()
3228 { 3229 {
3229 WTF_LOG(Media, "HTMLMediaElement::updateTextTrackDisplay(%p)", this); 3230 WTF_LOG(Media, "HTMLMediaElement::updateTextTrackDisplay(%p)", this);
3230 3231
3231 ensureTextTrackContainer().updateDisplay(*this); 3232 // not really, maybe move some things to HTMLVideoElement instead.
3233 ASSERT(isHTMLVideoElement());
3234 ensureTextTrackContainer().updateDisplay(toHTMLVideoElement(*this));
3232 } 3235 }
3233 3236
3234 void HTMLMediaElement::setClosedCaptionsVisible(bool closedCaptionVisible) 3237 void HTMLMediaElement::setClosedCaptionsVisible(bool closedCaptionVisible)
3235 { 3238 {
3236 WTF_LOG(Media, "HTMLMediaElement::setClosedCaptionsVisible(%p, %s)", this, b oolString(closedCaptionVisible)); 3239 WTF_LOG(Media, "HTMLMediaElement::setClosedCaptionsVisible(%p, %s)", this, b oolString(closedCaptionVisible));
3237 3240
3238 if (!m_player || !hasClosedCaptions()) 3241 if (!m_player || !hasClosedCaptions())
3239 return; 3242 return;
3240 3243
3241 m_closedCaptionsVisible = closedCaptionVisible; 3244 m_closedCaptionsVisible = closedCaptionVisible;
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
3642 3645
3643 #if ENABLE(WEB_AUDIO) 3646 #if ENABLE(WEB_AUDIO)
3644 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) 3647 void HTMLMediaElement::clearWeakMembers(Visitor* visitor)
3645 { 3648 {
3646 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) 3649 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider())
3647 audioSourceProvider()->setClient(nullptr); 3650 audioSourceProvider()->setClient(nullptr);
3648 } 3651 }
3649 #endif 3652 #endif
3650 3653
3651 } 3654 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/track/TextTrackContainer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698