| 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 19 matching lines...) Expand all Loading... |
| 30 #include "core/html/HTMLImageLoader.h" | 30 #include "core/html/HTMLImageLoader.h" |
| 31 #include "core/html/HTMLMediaElement.h" | 31 #include "core/html/HTMLMediaElement.h" |
| 32 #include "core/html/canvas/CanvasImageSource.h" | 32 #include "core/html/canvas/CanvasImageSource.h" |
| 33 #include "core/imagebitmap/ImageBitmapSource.h" | 33 #include "core/imagebitmap/ImageBitmapSource.h" |
| 34 #include "third_party/khronos/GLES2/gl2.h" | 34 #include "third_party/khronos/GLES2/gl2.h" |
| 35 | 35 |
| 36 namespace gpu { | 36 namespace gpu { |
| 37 namespace gles2 { | 37 namespace gles2 { |
| 38 class GLES2Interface; | 38 class GLES2Interface; |
| 39 } | 39 } |
| 40 } | 40 } // namespace gpu |
| 41 | 41 |
| 42 namespace blink { | 42 namespace blink { |
| 43 class ExceptionState; | 43 class ExceptionState; |
| 44 class ImageBitmapOptions; | 44 class ImageBitmapOptions; |
| 45 class MediaCustomControlsFullscreenDetector; | 45 class MediaCustomControlsFullscreenDetector; |
| 46 class MediaRemotingInterstitial; | 46 class MediaRemotingInterstitial; |
| 47 | 47 |
| 48 class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement, | 48 class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement, |
| 49 public CanvasImageSource, | 49 public CanvasImageSource, |
| 50 public ImageBitmapSource { | 50 public ImageBitmapSource { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 Member<MediaRemotingInterstitial> remoting_interstitial_; | 182 Member<MediaRemotingInterstitial> remoting_interstitial_; |
| 183 | 183 |
| 184 AtomicString default_poster_url_; | 184 AtomicString default_poster_url_; |
| 185 | 185 |
| 186 bool is_persistent_ = false; | 186 bool is_persistent_ = false; |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace blink | 189 } // namespace blink |
| 190 | 190 |
| 191 #endif // HTMLVideoElement_h | 191 #endif // HTMLVideoElement_h |
| OLD | NEW |