| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 // ImageBitmapSource implementation | 91 // ImageBitmapSource implementation |
| 92 IntSize bitmapSourceSize() const override; | 92 IntSize bitmapSourceSize() const override; |
| 93 ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Optional<IntRect
> cropRect, const ImageBitmapOptions&, ExceptionState&) override; | 93 ScriptPromise createImageBitmap(ScriptState*, EventTarget&, Optional<IntRect
> cropRect, const ImageBitmapOptions&, ExceptionState&) override; |
| 94 | 94 |
| 95 private: | 95 private: |
| 96 HTMLVideoElement(Document&); | 96 HTMLVideoElement(Document&); |
| 97 | 97 |
| 98 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 98 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 99 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 99 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 100 void attach(const AttachContext& = AttachContext()) override; | 100 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
| 101 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; | 101 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; |
| 102 bool isPresentationAttribute(const QualifiedName&) const override; | 102 bool isPresentationAttribute(const QualifiedName&) const override; |
| 103 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; | 103 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic
String&, MutableStylePropertySet*) override; |
| 104 bool isURLAttribute(const Attribute&) const override; | 104 bool isURLAttribute(const Attribute&) const override; |
| 105 const AtomicString imageSourceURL() const override; | 105 const AtomicString imageSourceURL() const override; |
| 106 | 106 |
| 107 void updateDisplayState() override; | 107 void updateDisplayState() override; |
| 108 void didMoveToNewDocument(Document& oldDocument) override; | 108 void didMoveToNewDocument(Document& oldDocument) override; |
| 109 void setDisplayMode(DisplayMode) override; | 109 void setDisplayMode(DisplayMode) override; |
| 110 | 110 |
| 111 Member<HTMLImageLoader> m_imageLoader; | 111 Member<HTMLImageLoader> m_imageLoader; |
| 112 | 112 |
| 113 AtomicString m_defaultPosterURL; | 113 AtomicString m_defaultPosterURL; |
| 114 }; | 114 }; |
| 115 | 115 |
| 116 } // namespace blink | 116 } // namespace blink |
| 117 | 117 |
| 118 #endif // HTMLVideoElement_h | 118 #endif // HTMLVideoElement_h |
| OLD | NEW |