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

Side by Side Diff: webrtc/api/java/jni/peerconnection_jni.cc

Issue 1809053002: Delete empty API files and cleaned up includes. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: IOS build Created 4 years, 9 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/api/api.gyp ('k') | webrtc/api/objc/RTCVideoSource+Private.h » ('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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include "webrtc/api/java/jni/androidmediaencoder_jni.h" 48 #include "webrtc/api/java/jni/androidmediaencoder_jni.h"
49 #include "webrtc/api/java/jni/androidnetworkmonitor_jni.h" 49 #include "webrtc/api/java/jni/androidnetworkmonitor_jni.h"
50 #include "webrtc/api/java/jni/androidvideocapturer_jni.h" 50 #include "webrtc/api/java/jni/androidvideocapturer_jni.h"
51 #include "webrtc/api/java/jni/classreferenceholder.h" 51 #include "webrtc/api/java/jni/classreferenceholder.h"
52 #include "webrtc/api/java/jni/jni_helpers.h" 52 #include "webrtc/api/java/jni/jni_helpers.h"
53 #include "webrtc/api/java/jni/native_handle_impl.h" 53 #include "webrtc/api/java/jni/native_handle_impl.h"
54 #include "webrtc/api/mediaconstraintsinterface.h" 54 #include "webrtc/api/mediaconstraintsinterface.h"
55 #include "webrtc/api/peerconnectioninterface.h" 55 #include "webrtc/api/peerconnectioninterface.h"
56 #include "webrtc/api/rtpreceiverinterface.h" 56 #include "webrtc/api/rtpreceiverinterface.h"
57 #include "webrtc/api/rtpsenderinterface.h" 57 #include "webrtc/api/rtpsenderinterface.h"
58 #include "webrtc/api/videosourceinterface.h"
59 #include "webrtc/api/webrtcsdp.h" 58 #include "webrtc/api/webrtcsdp.h"
60 #include "webrtc/base/bind.h" 59 #include "webrtc/base/bind.h"
61 #include "webrtc/base/checks.h" 60 #include "webrtc/base/checks.h"
62 #include "webrtc/base/event_tracer.h" 61 #include "webrtc/base/event_tracer.h"
63 #include "webrtc/base/logging.h" 62 #include "webrtc/base/logging.h"
64 #include "webrtc/base/logsinks.h" 63 #include "webrtc/base/logsinks.h"
65 #include "webrtc/base/messagequeue.h" 64 #include "webrtc/base/messagequeue.h"
66 #include "webrtc/base/networkmonitor.h" 65 #include "webrtc/base/networkmonitor.h"
67 #include "webrtc/base/ssladapter.h" 66 #include "webrtc/base/ssladapter.h"
68 #include "webrtc/base/stringutils.h" 67 #include "webrtc/base/stringutils.h"
(...skipping 2035 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 return JavaStringFromStdString( 2103 return JavaStringFromStdString(
2105 jni, 2104 jni,
2106 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id()); 2105 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->id());
2107 } 2106 }
2108 2107
2109 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) { 2108 JOW(void, RtpReceiver_free)(JNIEnv* jni, jclass, jlong j_rtp_receiver_pointer) {
2110 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release(); 2109 reinterpret_cast<RtpReceiverInterface*>(j_rtp_receiver_pointer)->Release();
2111 } 2110 }
2112 2111
2113 } // namespace webrtc_jni 2112 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « webrtc/api/api.gyp ('k') | webrtc/api/objc/RTCVideoSource+Private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698