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

Side by Side Diff: webrtc/sdk/android/src/jni/peerconnection_jni.cc

Issue 2818433003: Enabling 'gn check' on webrtc/sdk (Closed)
Patch Set: Re-adding a wrongly removed dependency Created 3 years, 8 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
« no previous file with comments | « webrtc/sdk/android/src/jni/DEPS ('k') | webrtc/sdk/objc/Framework/Classes/RTCFieldTrials.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2013 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 #include "webrtc/system_wrappers/include/field_trial.h" 67 #include "webrtc/system_wrappers/include/field_trial.h"
68 #include "webrtc/pc/webrtcsdp.h" 68 #include "webrtc/pc/webrtcsdp.h"
69 #include "webrtc/sdk/android/src/jni/androidmediadecoder_jni.h" 69 #include "webrtc/sdk/android/src/jni/androidmediadecoder_jni.h"
70 #include "webrtc/sdk/android/src/jni/androidmediaencoder_jni.h" 70 #include "webrtc/sdk/android/src/jni/androidmediaencoder_jni.h"
71 #include "webrtc/sdk/android/src/jni/androidnetworkmonitor_jni.h" 71 #include "webrtc/sdk/android/src/jni/androidnetworkmonitor_jni.h"
72 #include "webrtc/sdk/android/src/jni/androidvideotracksource.h" 72 #include "webrtc/sdk/android/src/jni/androidvideotracksource.h"
73 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" 73 #include "webrtc/sdk/android/src/jni/classreferenceholder.h"
74 #include "webrtc/sdk/android/src/jni/jni_helpers.h" 74 #include "webrtc/sdk/android/src/jni/jni_helpers.h"
75 #include "webrtc/sdk/android/src/jni/native_handle_impl.h" 75 #include "webrtc/sdk/android/src/jni/native_handle_impl.h"
76 #include "webrtc/sdk/android/src/jni/rtcstatscollectorcallbackwrapper.h" 76 #include "webrtc/sdk/android/src/jni/rtcstatscollectorcallbackwrapper.h"
77 #include "webrtc/system_wrappers/include/field_trial_default.h" 77 // Adding 'nogncheck' to disable the gn include headers check.
78 // We don't want to depend on 'system_wrappers:field_trial_default' because
79 // clients should be able to provide their own implementation.
80 #include "webrtc/system_wrappers/include/field_trial_default.h" // nogncheck
78 #include "webrtc/system_wrappers/include/logcat_trace_context.h" 81 #include "webrtc/system_wrappers/include/logcat_trace_context.h"
79 #include "webrtc/system_wrappers/include/trace.h" 82 #include "webrtc/system_wrappers/include/trace.h"
80 #include "webrtc/voice_engine/include/voe_base.h" 83 #include "webrtc/voice_engine/include/voe_base.h"
81 84
82 using cricket::WebRtcVideoDecoderFactory; 85 using cricket::WebRtcVideoDecoderFactory;
83 using cricket::WebRtcVideoEncoderFactory; 86 using cricket::WebRtcVideoEncoderFactory;
84 using rtc::Bind; 87 using rtc::Bind;
85 using rtc::Thread; 88 using rtc::Thread;
86 using rtc::ThreadManager; 89 using rtc::ThreadManager;
87 using webrtc::AudioSourceInterface; 90 using webrtc::AudioSourceInterface;
(...skipping 2650 matching lines...) Expand 10 before | Expand all | Expand 10 after
2738 return reinterpret_cast<DtmfSenderInterface*>(j_dtmf_sender_pointer) 2741 return reinterpret_cast<DtmfSenderInterface*>(j_dtmf_sender_pointer)
2739 ->inter_tone_gap(); 2742 ->inter_tone_gap();
2740 } 2743 }
2741 2744
2742 JOW(void, DtmfSender_free) 2745 JOW(void, DtmfSender_free)
2743 (JNIEnv* jni, jclass, jlong j_dtmf_sender_pointer) { 2746 (JNIEnv* jni, jclass, jlong j_dtmf_sender_pointer) {
2744 reinterpret_cast<DtmfSenderInterface*>(j_dtmf_sender_pointer)->Release(); 2747 reinterpret_cast<DtmfSenderInterface*>(j_dtmf_sender_pointer)->Release();
2745 } 2748 }
2746 2749
2747 } // namespace webrtc_jni 2750 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « webrtc/sdk/android/src/jni/DEPS ('k') | webrtc/sdk/objc/Framework/Classes/RTCFieldTrials.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698