Index: webkit/renderer/media/webmediasourceclient_impl.h |
diff --git a/webkit/renderer/media/webmediasourceclient_impl.h b/webkit/renderer/media/webmediasourceclient_impl.h |
deleted file mode 100644 |
index 07dd6984317e997ef9b1602b67520feb8c2b7206..0000000000000000000000000000000000000000 |
--- a/webkit/renderer/media/webmediasourceclient_impl.h |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-// Copyright 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#ifndef WEBKIT_RENDERER_MEDIA_WEBMEDIASOURCECLIENT_IMPL_H_ |
-#define WEBKIT_RENDERER_MEDIA_WEBMEDIASOURCECLIENT_IMPL_H_ |
- |
-#include <string> |
-#include <vector> |
- |
-#include "media/base/media_log.h" |
-#include "third_party/WebKit/public/web/WebMediaSourceClient.h" |
- |
-namespace media { |
-class ChunkDemuxer; |
-} |
- |
-namespace webkit_media { |
- |
-class WebMediaSourceClientImpl : public WebKit::WebMediaSourceClient { |
- public: |
- WebMediaSourceClientImpl(media::ChunkDemuxer* demuxer, media::LogCB log_cb); |
- virtual ~WebMediaSourceClientImpl(); |
- |
- // WebKit::WebMediaSourceClient implementation. |
- virtual AddStatus addSourceBuffer( |
- const WebKit::WebString& type, |
- const WebKit::WebVector<WebKit::WebString>& codecs, |
- WebKit::WebSourceBuffer** source_buffer) OVERRIDE; |
- virtual double duration() OVERRIDE; |
- virtual void setDuration(double duration) OVERRIDE; |
- virtual void endOfStream(EndOfStreamStatus status) OVERRIDE; |
- |
- private: |
- media::ChunkDemuxer* demuxer_; // Owned by WebMediaPlayerImpl. |
- media::LogCB log_cb_; |
- |
- DISALLOW_COPY_AND_ASSIGN(WebMediaSourceClientImpl); |
-}; |
- |
-} // namespace webkit_media |
- |
-#endif // WEBKIT_RENDERER_MEDIA_WEBMEDIASOURCECLIENT_IMPL_H_ |