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

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

Issue 1391703003: Create network change notifier. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 5 years, 2 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
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 LoadClass(jni, "org/webrtc/DataChannel$State"); 70 LoadClass(jni, "org/webrtc/DataChannel$State");
71 LoadClass(jni, "org/webrtc/IceCandidate"); 71 LoadClass(jni, "org/webrtc/IceCandidate");
72 #if defined(ANDROID) && !defined(WEBRTC_CHROMIUM_BUILD) 72 #if defined(ANDROID) && !defined(WEBRTC_CHROMIUM_BUILD)
73 LoadClass(jni, "android/graphics/SurfaceTexture"); 73 LoadClass(jni, "android/graphics/SurfaceTexture");
74 LoadClass(jni, "org/webrtc/CameraEnumerator"); 74 LoadClass(jni, "org/webrtc/CameraEnumerator");
75 LoadClass(jni, "org/webrtc/Camera2Enumerator"); 75 LoadClass(jni, "org/webrtc/Camera2Enumerator");
76 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid"); 76 LoadClass(jni, "org/webrtc/CameraEnumerationAndroid");
77 LoadClass(jni, "org/webrtc/VideoCapturerAndroid"); 77 LoadClass(jni, "org/webrtc/VideoCapturerAndroid");
78 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver"); 78 LoadClass(jni, "org/webrtc/VideoCapturerAndroid$NativeObserver");
79 LoadClass(jni, "org/webrtc/EglBase"); 79 LoadClass(jni, "org/webrtc/EglBase");
80 LoadClass(jni, "org/webrtc/NetworkMonitor");
80 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder"); 81 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder");
81 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo"); 82 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$OutputBufferInfo");
82 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType"); 83 LoadClass(jni, "org/webrtc/MediaCodecVideoEncoder$VideoCodecType");
83 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder"); 84 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder");
84 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer"); 85 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedTextureBuffer");
85 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedByteBuffer"); 86 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$DecodedByteBuffer");
86 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType"); 87 LoadClass(jni, "org/webrtc/MediaCodecVideoDecoder$VideoCodecType");
87 LoadClass(jni, "org/webrtc/SurfaceTextureHelper"); 88 LoadClass(jni, "org/webrtc/SurfaceTextureHelper");
88 jclass j_egl_base_class = GetClass("org/webrtc/EglBase"); 89 jclass j_egl_base_class = GetClass("org/webrtc/EglBase");
89 jmethodID j_is_egl14_supported_method = jni->GetStaticMethodID( 90 jmethodID j_is_egl14_supported_method = jni->GetStaticMethodID(
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 RTC_CHECK(inserted) << "Duplicate class name: " << name; 146 RTC_CHECK(inserted) << "Duplicate class name: " << name;
146 } 147 }
147 148
148 // Returns a global reference guaranteed to be valid for the lifetime of the 149 // Returns a global reference guaranteed to be valid for the lifetime of the
149 // process. 150 // process.
150 jclass FindClass(JNIEnv* jni, const char* name) { 151 jclass FindClass(JNIEnv* jni, const char* name) {
151 return g_class_reference_holder->GetClass(name); 152 return g_class_reference_holder->GetClass(name);
152 } 153 }
153 154
154 } // namespace webrtc_jni 155 } // namespace webrtc_jni
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698