| 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 25 matching lines...) Expand all Loading... |
| 36 class SkPaint; | 36 class SkPaint; |
| 37 | 37 |
| 38 namespace gpu { | 38 namespace gpu { |
| 39 namespace gles2 { | 39 namespace gles2 { |
| 40 class GLES2Interface; | 40 class GLES2Interface; |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 class ExceptionState; | 45 class ExceptionState; |
| 46 class GraphicsContext; | |
| 47 class ImageBitmapOptions; | 46 class ImageBitmapOptions; |
| 48 | 47 |
| 49 class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement, | 48 class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement, |
| 50 public CanvasImageSource, | 49 public CanvasImageSource, |
| 51 public ImageBitmapSource { | 50 public ImageBitmapSource { |
| 52 DEFINE_WRAPPERTYPEINFO(); | 51 DEFINE_WRAPPERTYPEINFO(); |
| 53 | 52 |
| 54 public: | 53 public: |
| 55 static HTMLVideoElement* create(Document&); | 54 static HTMLVideoElement* create(Document&); |
| 56 DECLARE_VIRTUAL_TRACE(); | 55 DECLARE_VIRTUAL_TRACE(); |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 void setDisplayMode(DisplayMode) override; | 130 void setDisplayMode(DisplayMode) override; |
| 132 | 131 |
| 133 Member<HTMLImageLoader> m_imageLoader; | 132 Member<HTMLImageLoader> m_imageLoader; |
| 134 | 133 |
| 135 AtomicString m_defaultPosterURL; | 134 AtomicString m_defaultPosterURL; |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace blink | 137 } // namespace blink |
| 139 | 138 |
| 140 #endif // HTMLVideoElement_h | 139 #endif // HTMLVideoElement_h |
| OLD | NEW |