| OLD | NEW | 
|    1 /* |    1 /* | 
|    2  *  Copyright 2015 The WebRTC project authors. All Rights Reserved. |    2  *  Copyright 2015 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 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" |   10 #include "webrtc/sdk/android/src/jni/classreferenceholder.h" | 
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   99   LoadClass(jni, "org/webrtc/RTCStats"); |   99   LoadClass(jni, "org/webrtc/RTCStats"); | 
|  100   LoadClass(jni, "org/webrtc/RTCStatsReport"); |  100   LoadClass(jni, "org/webrtc/RTCStatsReport"); | 
|  101   LoadClass(jni, "org/webrtc/RtpReceiver"); |  101   LoadClass(jni, "org/webrtc/RtpReceiver"); | 
|  102   LoadClass(jni, "org/webrtc/RtpSender"); |  102   LoadClass(jni, "org/webrtc/RtpSender"); | 
|  103   LoadClass(jni, "org/webrtc/SessionDescription"); |  103   LoadClass(jni, "org/webrtc/SessionDescription"); | 
|  104   LoadClass(jni, "org/webrtc/SessionDescription$Type"); |  104   LoadClass(jni, "org/webrtc/SessionDescription$Type"); | 
|  105   LoadClass(jni, "org/webrtc/StatsReport"); |  105   LoadClass(jni, "org/webrtc/StatsReport"); | 
|  106   LoadClass(jni, "org/webrtc/StatsReport$Value"); |  106   LoadClass(jni, "org/webrtc/StatsReport$Value"); | 
|  107   LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); |  107   LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); | 
|  108   LoadClass(jni, "org/webrtc/VideoCapturer"); |  108   LoadClass(jni, "org/webrtc/VideoCapturer"); | 
 |  109   LoadClass(jni, "org/webrtc/VideoCodecInfo"); | 
|  109   LoadClass(jni, "org/webrtc/VideoCodecStatus"); |  110   LoadClass(jni, "org/webrtc/VideoCodecStatus"); | 
|  110   LoadClass(jni, "org/webrtc/VideoDecoder$Settings"); |  111   LoadClass(jni, "org/webrtc/VideoDecoder$Settings"); | 
|  111   LoadClass(jni, "org/webrtc/VideoDecoderWrapperCallback"); |  112   LoadClass(jni, "org/webrtc/VideoDecoderWrapperCallback"); | 
 |  113   LoadClass(jni, "org/webrtc/VideoEncoder"); | 
 |  114   LoadClass(jni, "org/webrtc/VideoEncoder$BitrateAllocation"); | 
 |  115   LoadClass(jni, "org/webrtc/VideoEncoder$EncodeInfo"); | 
 |  116   LoadClass(jni, "org/webrtc/VideoEncoder$ScalingSettings"); | 
 |  117   LoadClass(jni, "org/webrtc/VideoEncoder$Settings"); | 
 |  118   LoadClass(jni, "org/webrtc/VideoEncoderWrapperCallback"); | 
|  112   LoadClass(jni, "org/webrtc/VideoFrame"); |  119   LoadClass(jni, "org/webrtc/VideoFrame"); | 
|  113   LoadClass(jni, "org/webrtc/VideoFrame$Buffer"); |  120   LoadClass(jni, "org/webrtc/VideoFrame$Buffer"); | 
|  114   LoadClass(jni, "org/webrtc/VideoFrame$I420Buffer"); |  121   LoadClass(jni, "org/webrtc/VideoFrame$I420Buffer"); | 
|  115   LoadClass(jni, "org/webrtc/VideoFrame$TextureBuffer"); |  122   LoadClass(jni, "org/webrtc/VideoFrame$TextureBuffer"); | 
|  116   LoadClass(jni, "org/webrtc/VideoRenderer$I420Frame"); |  123   LoadClass(jni, "org/webrtc/VideoRenderer$I420Frame"); | 
|  117   LoadClass(jni, "org/webrtc/VideoSink"); |  124   LoadClass(jni, "org/webrtc/VideoSink"); | 
|  118   LoadClass(jni, "org/webrtc/VideoTrack"); |  125   LoadClass(jni, "org/webrtc/VideoTrack"); | 
|  119   LoadClass(jni, "org/webrtc/WrappedNativeI420Buffer"); |  126   LoadClass(jni, "org/webrtc/WrappedNativeI420Buffer"); | 
|  120 } |  127 } | 
|  121  |  128  | 
| (...skipping 27 matching lines...) Expand all  Loading... | 
|  149 } |  156 } | 
|  150  |  157  | 
|  151 // Returns a global reference guaranteed to be valid for the lifetime of the |  158 // Returns a global reference guaranteed to be valid for the lifetime of the | 
|  152 // process. |  159 // process. | 
|  153 jclass FindClass(JNIEnv* jni, const char* name) { |  160 jclass FindClass(JNIEnv* jni, const char* name) { | 
|  154   return g_class_reference_holder->GetClass(name); |  161   return g_class_reference_holder->GetClass(name); | 
|  155 } |  162 } | 
|  156  |  163  | 
|  157 }  // namespace jni |  164 }  // namespace jni | 
|  158 }  // namespace webrtc |  165 }  // namespace webrtc | 
| OLD | NEW |