| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 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 22 matching lines...) Expand all Loading... |
| 33 #include "wtf/Noncopyable.h" | 33 #include "wtf/Noncopyable.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 class WebGraphicsContext3D; | 36 class WebGraphicsContext3D; |
| 37 class WebContentDecryptionModule; | 37 class WebContentDecryptionModule; |
| 38 class WebInbandTextTrack; | 38 class WebInbandTextTrack; |
| 39 class WebLayer; | 39 class WebLayer; |
| 40 class WebMediaSource; | 40 class WebMediaSource; |
| 41 } | 41 } |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace blink { |
| 44 | 44 |
| 45 class AudioSourceProvider; | 45 class AudioSourceProvider; |
| 46 class GraphicsContext; | 46 class GraphicsContext; |
| 47 class IntRect; | 47 class IntRect; |
| 48 class KURL; | 48 class KURL; |
| 49 class MediaPlayer; | 49 class MediaPlayer; |
| 50 class TimeRanges; | 50 class TimeRanges; |
| 51 | 51 |
| 52 // GL types as defined in OpenGL ES 2.0 header file gl2.h from khronos.org. | 52 // GL types as defined in OpenGL ES 2.0 header file gl2.h from khronos.org. |
| 53 // That header cannot be included directly due to a conflict with NPAPI headers. | 53 // That header cannot be included directly due to a conflict with NPAPI headers. |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 #if ENABLE(WEB_AUDIO) | 121 #if ENABLE(WEB_AUDIO) |
| 122 virtual AudioSourceProvider* audioSourceProvider() = 0; | 122 virtual AudioSourceProvider* audioSourceProvider() = 0; |
| 123 #endif | 123 #endif |
| 124 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0; | 124 virtual blink::WebMediaPlayer* webMediaPlayer() const = 0; |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } | 127 } |
| 128 | 128 |
| 129 #endif // MediaPlayer_h | 129 #endif // MediaPlayer_h |
| OLD | NEW |