Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Unified Diff: content/public/renderer/video_frame_provider.h

Issue 2005053006: Cleanup naming issue with content::VideoFrameProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/renderer/video_frame_provider.h
diff --git a/content/public/renderer/video_frame_provider.h b/content/public/renderer/video_frame_provider.h
deleted file mode 100644
index 08e51da9bdac039279879575c2ef0a309872360b..0000000000000000000000000000000000000000
--- a/content/public/renderer/video_frame_provider.h
+++ /dev/null
@@ -1,49 +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 CONTENT_PUBLIC_RENDERER_VIDEO_FRAME_PROVIDER_H_
-#define CONTENT_PUBLIC_RENDERER_VIDEO_FRAME_PROVIDER_H_
-
-#include "base/callback.h"
-#include "base/memory/ref_counted.h"
-
-namespace media {
-class VideoFrame;
-}
-
-namespace content {
-
-// Define an interface to provide a sequence of video frames to clients.
-// TODO(wjia): remove ref count.
-// TODO(wjia): rename interface so it doesn't clash with cc::VideoFrameProvider.
-class VideoFrameProvider
- : public base::RefCountedThreadSafe<VideoFrameProvider> {
- public:
- typedef base::Callback<void(const scoped_refptr<media::VideoFrame>&)>
- RepaintCB;
-
- // Start to provide video frames to the caller.
- virtual void Start() = 0;
-
- // Stop to provide video frames to the caller.
- virtual void Stop() = 0;
-
- // Resume to provide video frames to the caller after being paused.
- virtual void Play() = 0;
-
- // Put the provider in pause state and the caller will not receive video
- // frames, but the provider might still generate video frames which are
- // thrown away.
- virtual void Pause() = 0;
-
- protected:
- friend class base::RefCountedThreadSafe<VideoFrameProvider>;
-
- virtual ~VideoFrameProvider() {}
-
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_RENDERER_VIDEO_FRAME_PROVIDER_H_
« no previous file with comments | « content/public/renderer/media_stream_video_renderer.h ('k') | content/renderer/media/media_stream_renderer_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698