blob: edbb9b81e156182d67055ab6a5d4bb67375b91d0 [file] [log] [blame]
// Copyright (c) 2011 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_MEDIA_MEDIA_STREAM_CLIENT_H_
#define WEBKIT_MEDIA_MEDIA_STREAM_CLIENT_H_
#include "base/callback.h"
#include "base/memory/ref_counted.h"
#include "webkit/media/video_frame_provider.h"
class GURL;
namespace media {
class VideoDecoder;
class MessageLoopFactory;
}
namespace webkit_media {
// Define an interface for media stream client to get some information about
// the media stream.
class MediaStreamClient {
public:
// Check if the |url| is derived from a media stream object.
virtual bool IsMediaStream(const GURL& url) = 0;
virtual scoped_refptr<VideoFrameProvider> GetVideoFrameProvider(
const GURL& url,
const base::Closure& error_cb,
const VideoFrameProvider::RepaintCB& repaint_cb) = 0;
virtual scoped_refptr<media::VideoDecoder> GetVideoDecoder(
const GURL& url,
media::MessageLoopFactory* message_loop_factory) = 0;
protected:
virtual ~MediaStreamClient() {}
};
} // namespace webkit_media
#endif // WEBKIT_MEDIA_MEDIA_STREAM_CLIENT_H_