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

Side by Side Diff: talk/app/webrtc/java/jni/classreferenceholder.cc

Issue 1535943004: Multi-networking with Android L. Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years 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 * libjingle 2 * libjingle
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 LoadClass(jni, "android/graphics/SurfaceTexture"); 74 LoadClass(jni, "android/graphics/SurfaceTexture");
75 LoadClass(jni, "javax/microedition/khronos/egl/EGLContext"); 75 LoadClass(jni, "javax/microedition/khronos/egl/EGLContext");
76 LoadClass(jni, "org/webrtc/CameraEnumerator"); 76 LoadClass(jni, "org/webrtc/CameraEnumerator");
77 LoadClass(jni, "org/webrtc/Camera2Enumerator"); 77 LoadClass(jni, "org/webrtc/Camera2Enumerator");
78 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid"); 78 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid");
79 LoadClass(jni, "org/webrtc/VideoCapturerAndroid"); 79 LoadClass(jni, "org/webrtc/VideoCapturerAndroid");
80 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver"); 80 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver");
81 LoadClass(jni, "org/webrtc/EglBase"); 81 LoadClass(jni, "org/webrtc/EglBase");
82 LoadClass(jni, "org/webrtc/EglBase$Context"); 82 LoadClass(jni, "org/webrtc/EglBase$Context");
83 LoadClass(jni, "org/webrtc/NetworkMonitor"); 83 LoadClass(jni, "org/webrtc/NetworkMonitor");
84 LoadClass(jni, "org/webrtc/NetworkMonitorAutoDetect$ConnectionType");
85 LoadClass(jni, "org/webrtc/NetworkMonitorAutoDetect$NetworkInformation");
84 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder"); 86 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder");
85 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo"); 87 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo");
86 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType"); 88 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType");
87 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder"); 89 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder");
88 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer"); 90 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer");
89 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer"); 91 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedOutputBuffer");
90 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType"); 92 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType");
91 LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); 93 LoadClass(jni, "org/webrtc/SurfaceTextureHelper");
92 #endif 94 #endif
93 LoadClass(jni, "org/webrtc/MediaSource$State"); 95 LoadClass(jni, "org/webrtc/MediaSource$State");
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 RTC_CHECK(inserted) << "Duplicate class name: " << name; 145 RTC_CHECK(inserted) << "Duplicate class name: " << name;
144 } 146 }
145 147
146 // Returns a global reference guaranteed to be valid for the lifetime of the 148 // Returns a global reference guaranteed to be valid for the lifetime of the
147 // process. 149 // process.
148 jclass FindClass(JNIEnv* jni, const char* name) { 150 jclass FindClass(JNIEnv* jni, const char* name) {
149 return g_class_reference_holder->GetClass(name); 151 return g_class_reference_holder->GetClass(name);
150 } 152 }
151 153
152 } // namespace webrtc_jni 154 } // namespace webrtc_jni
OLDNEW
« no previous file with comments | « talk/app/webrtc/java/jni/androidnetworkmonitor_jni.cc ('k') | talk/app/webrtc/java/jni/jni_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698