1 /* 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. 3 * 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 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 package org.webrtc; 12 13 /** 14 * This class provides a ClassLoader that is capable of loading WebRTC Java classes regardless of 15 * what thread it's called from. Such a ClassLoader is needed for the few cases where the JNI 16 * mechanism is unable to automatically determine the appropriate ClassLoader instance. 17 */ 18 class WebRtcClassLoader { 19 @CalledByNative getClassLoader()20 static Object getClassLoader() { 21 Object loader = WebRtcClassLoader.class.getClassLoader(); 22 if (loader == null) { 23 throw new RuntimeException("Failed to get WebRTC class loader."); 24 } 25 return loader; 26 } 27 } 28