Index: Source/platform/graphics/media/MediaPlayer.h |
diff --git a/Source/platform/graphics/media/MediaPlayer.h b/Source/platform/graphics/media/MediaPlayer.h |
deleted file mode 100644 |
index f6e713949761b59ab70ba428ef59fe8be936cf34..0000000000000000000000000000000000000000 |
--- a/Source/platform/graphics/media/MediaPlayer.h |
+++ /dev/null |
@@ -1,107 +0,0 @@ |
-/* |
- * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. |
- * |
- * Redistribution and use in source and binary forms, with or without |
- * modification, are permitted provided that the following conditions |
- * are met: |
- * 1. Redistributions of source code must retain the above copyright |
- * notice, this list of conditions and the following disclaimer. |
- * 2. Redistributions in binary form must reproduce the above copyright |
- * notice, this list of conditions and the following disclaimer in the |
- * documentation and/or other materials provided with the distribution. |
- * |
- * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
- */ |
- |
-#ifndef MediaPlayer_h |
-#define MediaPlayer_h |
- |
-#include "public/platform/WebMediaPlayer.h" |
-#include "wtf/Forward.h" |
-#include "wtf/Noncopyable.h" |
- |
-namespace blink { |
- |
-class AudioSourceProvider; |
-class KURL; |
-class MediaPlayer; |
-class WebInbandTextTrack; |
-class WebLayer; |
-class WebMediaSource; |
- |
-class PLATFORM_EXPORT MediaPlayerClient { |
-public: |
- MediaPlayerClient() { } |
- virtual ~MediaPlayerClient() { } |
- |
- // the network state has changed |
- virtual void mediaPlayerNetworkStateChanged() = 0; |
- |
- // the ready state has changed |
- virtual void mediaPlayerReadyStateChanged() = 0; |
- |
- // time has jumped, eg. not as a result of normal playback |
- virtual void mediaPlayerTimeChanged() = 0; |
- |
- // the media file duration has changed, or is now known |
- virtual void mediaPlayerDurationChanged() = 0; |
- |
- // the play/pause status changed |
- virtual void mediaPlayerPlaybackStateChanged() = 0; |
- |
- virtual void mediaPlayerRequestSeek(double) = 0; |
- |
- // The URL for video poster image. |
- // FIXME: Remove this when WebMediaPlayerClientImpl::loadInternal does not depend on it. |
- virtual KURL mediaPlayerPosterURL() = 0; |
- |
-// Presentation-related methods |
- // a new frame of video is available |
- virtual void mediaPlayerRepaint() = 0; |
- |
- // the movie size has changed |
- virtual void mediaPlayerSizeChanged() = 0; |
- |
- virtual void mediaPlayerSetWebLayer(WebLayer*) = 0; |
- |
- virtual void mediaPlayerDidAddTextTrack(WebInbandTextTrack*) = 0; |
- virtual void mediaPlayerDidRemoveTextTrack(WebInbandTextTrack*) = 0; |
- |
- virtual void mediaPlayerMediaSourceOpened(WebMediaSource*) = 0; |
-}; |
- |
-typedef PassOwnPtr<MediaPlayer> (*CreateMediaEnginePlayer)(MediaPlayerClient*); |
- |
-class PLATFORM_EXPORT MediaPlayer { |
- WTF_MAKE_NONCOPYABLE(MediaPlayer); |
-public: |
- static PassOwnPtr<MediaPlayer> create(MediaPlayerClient*); |
- static void setMediaEngineCreateFunction(CreateMediaEnginePlayer); |
- |
- MediaPlayer() { } |
- virtual ~MediaPlayer() { } |
- |
- virtual void load(WebMediaPlayer::LoadType, const String& url, WebMediaPlayer::CORSMode) = 0; |
- |
- enum Preload { None, MetaData, Auto }; |
- virtual void setPreload(Preload) = 0; |
- |
-#if ENABLE(WEB_AUDIO) |
- virtual AudioSourceProvider* audioSourceProvider() = 0; |
-#endif |
- virtual WebMediaPlayer* webMediaPlayer() const = 0; |
-}; |
- |
-} // namespace blink |
- |
-#endif // MediaPlayer_h |