15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2007, 2009, 2010 Apple Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1. Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2. Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *    documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#ifndef RenderVideo_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#define RenderVideo_h
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
2953e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)#include "core/rendering/RenderMedia.h"
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
31c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
3202772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)class HTMLVideoElement;
345c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
3553e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)class RenderVideo FINAL : public RenderMedia {
365c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
375c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    RenderVideo(HTMLVideoElement*);
385c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual ~RenderVideo();
395c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    IntRect videoBox() const;
415c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    static IntSize defaultSize();
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
445c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    bool supportsAcceleratedRendering() const;
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
4609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    bool shouldDisplayVideo() const;
477242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    HTMLVideoElement* videoElement() const;
487242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    bool acceleratedRenderingInUse();
495c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
505c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
5109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void updateFromElement() OVERRIDE;
525c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
5309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void intrinsicSizeChanged() OVERRIDE;
545c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    LayoutSize calculateIntrinsicSize();
555c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void updateIntrinsicSize();
565c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
5709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void imageChanged(WrappedImagePtr, const IntRect*) OVERRIDE;
585c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
5909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual const char* renderName() const OVERRIDE { return "RenderVideo"; }
605c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
6109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual bool isVideo() const OVERRIDE { return true; }
625c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
6309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void paintReplaced(PaintInfo&, const LayoutPoint&) OVERRIDE;
645c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
6509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual void layout() OVERRIDE;
665c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
67926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    virtual LayoutUnit computeReplacedLogicalWidth(ShouldComputePreferred  = ComputeActual) const OVERRIDE;
6809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual LayoutUnit computeReplacedLogicalHeight() const OVERRIDE;
695c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    virtual LayoutUnit minimumReplacedHeight() const OVERRIDE;
705c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
7109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual LayoutUnit offsetLeft() const OVERRIDE;
7209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual LayoutUnit offsetTop() const OVERRIDE;
7309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual LayoutUnit offsetWidth() const OVERRIDE;
7409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    virtual LayoutUnit offsetHeight() const OVERRIDE;
755c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
76e38fbeeb576b5094e34e038ab88d9d6a5c5c2214Torne (Richard Coles)    virtual CompositingReasons additionalCompositingReasons() const OVERRIDE;
7707a852d8c1953036774d8f3b65d18dcfea3bb4a2Ben Murdoch
785c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    void updatePlayer();
795c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
80a854de003a23bf3c7f95ec0f8154ada64092ff5cTorne (Richard Coles)
815c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    LayoutSize m_cachedImageSize;
825c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
835c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
84bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderVideo, isVideo());
855c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
86c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
875c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
885c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif // RenderVideo_h
89