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

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

Issue 1407083006: Update MediaRecorderHandler to use AudioTrackRecorder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add layout tests Created 5 years, 1 month 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 25 matching lines...) Expand all
36 bool is_remote, 36 bool is_remote,
37 bool is_readonly, 37 bool is_readonly,
38 blink::WebMediaStream* web_stream); 38 blink::WebMediaStream* web_stream);
39 39
40 CONTENT_EXPORT bool AddAudioTrackToMediaStream( 40 CONTENT_EXPORT bool AddAudioTrackToMediaStream(
41 const scoped_refptr<media::AudioCapturerSource>& source, 41 const scoped_refptr<media::AudioCapturerSource>& source,
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(
47 const scoped_refptr<media::AudioCapturerSource>& source,
48 // const media::AudioParameters& params,
mcasas 2015/11/10 18:18:58 ?
49 bool is_remote,
50 bool is_readonly,
51 blink::WebMediaStream* web_stream);
46 52
47 } // namespace content 53 } // namespace content
48 54
49 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_ 55 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698