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

Side by Side Diff: content/public/renderer/media_stream_source_api.h

Issue 883293005: Cast: Basic cast_receiver API for chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
Alpha Left Google 2015/02/04 03:07:52 Maybe this file should be media_stream_source.h? T
hubbe 2015/02/05 20:23:00 Seems like a file called media_stream_source.h sho
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_SOURCE_API_H_
6 #define CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_SOURCE_API_H_
7
8 #include "content/common/content_export.h"
9 #include "media/base/audio_capturer_source.h"
10 #include "media/video/capture/video_capturer_source.h"
11
12 namespace blink {
13 class WebMediaStreamSource;
14 }
15
16 namespace content {
17
18 CONTENT_EXPORT void InitializeVideoWebMediaSource(
Alpha Left Google 2015/02/04 03:07:52 Maybe InitializeMediaStreamVideoSource and Initial
hubbe 2015/02/05 20:23:00 How about Initialize{Audio,Video}WebMediaStreamSou
Alpha Left Google 2015/02/07 01:30:30 InitializeVideoWebMediaStreamSource is a bunch of
hubbe 2015/02/09 20:13:32 How about InitializeWebMediaStreamSourceFor{Audio,
19 scoped_refptr<media::VideoCapturerSource> source,
20 blink::WebMediaStreamSource* webkit_source);
21 CONTENT_EXPORT void InitializeAudioWebMediaSource(
22 scoped_refptr<media::AudioCapturerSource> source,
23 blink::WebMediaStreamSource* webkit_source);
24
25 // TODO(Hubbe): remove methods?
26
27 } // namespace content
28
29 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_SINK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698