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

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

Issue 1543673002: MediaRecorder: make MediaRecorderHandler a MediaStreamObserver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_ 5 #ifndef CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_
6 #define CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_ 6 #define CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_
7 7
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "media/base/audio_capturer_source.h" 9 #include "media/base/audio_capturer_source.h"
10 #include "media/base/video_capturer_source.h" 10 #include "media/base/video_capturer_source.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 const media::AudioParameters& params, 42 const media::AudioParameters& params,
43 bool is_remote, 43 bool is_remote,
44 bool is_readonly, 44 bool is_readonly,
45 const std::string& media_stream_url); 45 const std::string& media_stream_url);
46 CONTENT_EXPORT bool AddAudioTrackToMediaStream( 46 CONTENT_EXPORT bool AddAudioTrackToMediaStream(
47 const scoped_refptr<media::AudioCapturerSource>& source, 47 const scoped_refptr<media::AudioCapturerSource>& source,
48 bool is_remote, 48 bool is_remote,
49 bool is_readonly, 49 bool is_readonly,
50 blink::WebMediaStream* web_stream); 50 blink::WebMediaStream* web_stream);
51 51
52 CONTENT_EXPORT void AddMediaStreamTowebMediaStream(
53 blink::WebMediaStream* web_stream);
perkj_chrome 2016/01/07 09:18:00 ?
mcasas 2016/01/08 00:14:12 Following the previous explanation, WebTestDelegat
54
52 } // namespace content 55 } // namespace content
53 56
54 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_ 57 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698