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

Side by Side Diff: webrtc/sdk/android/src/jni/pc/media_jni.h

Issue 3009613002: Android: Replace webrtc_jni namespace with nested jni namespace (Closed)
Patch Set: Rebase Created 3 years, 3 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
1 /* 1 /*
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 10 matching lines...) Expand all
21 class RtcEventLogFactoryInterface; 21 class RtcEventLogFactoryInterface;
22 class AudioMixer; 22 class AudioMixer;
23 } // namespace webrtc 23 } // namespace webrtc
24 24
25 namespace cricket { 25 namespace cricket {
26 class MediaEngineInterface; 26 class MediaEngineInterface;
27 class WebRtcVideoEncoderFactory; 27 class WebRtcVideoEncoderFactory;
28 class WebRtcVideoDecoderFactory; 28 class WebRtcVideoDecoderFactory;
29 } // namespace cricket 29 } // namespace cricket
30 30
31 namespace webrtc_jni { 31 namespace webrtc {
32 namespace jni {
32 33
33 webrtc::CallFactoryInterface* CreateCallFactory(); 34 CallFactoryInterface* CreateCallFactory();
34 webrtc::RtcEventLogFactoryInterface* CreateRtcEventLogFactory(); 35 RtcEventLogFactoryInterface* CreateRtcEventLogFactory();
35 36
36 cricket::MediaEngineInterface* CreateMediaEngine( 37 cricket::MediaEngineInterface* CreateMediaEngine(
37 webrtc::AudioDeviceModule* adm, 38 AudioDeviceModule* adm,
38 const rtc::scoped_refptr<webrtc::AudioEncoderFactory>& 39 const rtc::scoped_refptr<AudioEncoderFactory>& audio_encoder_factory,
39 audio_encoder_factory, 40 const rtc::scoped_refptr<AudioDecoderFactory>& audio_decoder_factory,
40 const rtc::scoped_refptr<webrtc::AudioDecoderFactory>&
41 audio_decoder_factory,
42 cricket::WebRtcVideoEncoderFactory* video_encoder_factory, 41 cricket::WebRtcVideoEncoderFactory* video_encoder_factory,
43 cricket::WebRtcVideoDecoderFactory* video_decoder_factory, 42 cricket::WebRtcVideoDecoderFactory* video_decoder_factory,
44 rtc::scoped_refptr<webrtc::AudioMixer> audio_mixer); 43 rtc::scoped_refptr<AudioMixer> audio_mixer);
45 44
46 } // namespace webrtc_jni 45 } // namespace jni
46 } // namespace webrtc
47 47
48 #endif // WEBRTC_SDK_ANDROID_SRC_JNI_PC_MEDIA_JNI_H_ 48 #endif // WEBRTC_SDK_ANDROID_SRC_JNI_PC_MEDIA_JNI_H_
OLDNEW
« no previous file with comments | « webrtc/sdk/android/src/jni/pc/logging_jni.cc ('k') | webrtc/sdk/android/src/jni/pc/media_jni.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698