Home
last modified time | relevance | path

Searched refs:VTTCueBox (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
DVTTCue.h43 class VTTCueBox FINAL : public HTMLDivElement {
45 static PassRefPtrWillBeRawPtr<VTTCueBox> create(Document& document, VTTCue* cue) in create()
47 return adoptRefWillBeNoop(new VTTCueBox(document, cue)); in create()
56 VTTCueBox(Document&, VTTCue*);
150 VTTCueBox& ensureDisplayTree();
151 PassRefPtrWillBeRawPtr<VTTCueBox> getDisplayTree(const IntSize& videoSize);
184 RefPtrWillBeMember<VTTCueBox> m_displayTree;
DVTTRegion.h48 class VTTCueBox; variable
97 void appendVTTCueBox(PassRefPtrWillBeRawPtr<VTTCueBox>);
99 void willRemoveVTTCueBox(VTTCueBox*);
DVTTCue.cpp128 VTTCueBox::VTTCueBox(Document& document, VTTCue* cue) in VTTCueBox() function in blink::VTTCueBox
135 void VTTCueBox::applyCSSProperties(const IntSize&) in applyCSSProperties()
198 RenderObject* VTTCueBox::createRenderer(RenderStyle*) in createRenderer()
203 void VTTCueBox::trace(Visitor* visitor) in trace()
249 VTTCueBox& VTTCue::ensureDisplayTree() in ensureDisplayTree()
252 m_displayTree = VTTCueBox::create(document(), this); in ensureDisplayTree()
718 PassRefPtrWillBeRawPtr<VTTCueBox> VTTCue::getDisplayTree(const IntSize& videoSize) in getDisplayTree()
720 RefPtrWillBeRawPtr<VTTCueBox> displayTree(ensureDisplayTree()); in getDisplayTree()
797 RefPtrWillBeRawPtr<VTTCueBox> displayBox = getDisplayTree(videoSize); in updateDisplay()
DVTTRegion.cpp332 void VTTRegion::willRemoveVTTCueBox(VTTCueBox* box) in willRemoveVTTCueBox()
345 void VTTRegion::appendVTTCueBox(PassRefPtrWillBeRawPtr<VTTCueBox> displayBox) in appendVTTCueBox()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderVTTCue.h36 class VTTCueBox; variable
40 explicit RenderVTTCue(VTTCueBox*);
DRenderVTTCue.cpp34 RenderVTTCue::RenderVTTCue(VTTCueBox* element) in RenderVTTCue()