Correct the class name in peerconnection_jni.cc.

BUG=4194
TEST=Manual Test
R=glaznev@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/40449004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@8106 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
braveyao@webrtc.org 2015-01-21 07:57:06 +00:00
parent 5f93d0a140
commit fedb9ea6bc

View File

@ -3176,10 +3176,10 @@ JOW(jobject, PeerConnection_iceConnectionState)(JNIEnv* jni, jobject j_pc) {
return JavaEnumFromIndex(jni, "PeerConnection$IceConnectionState", state);
}
JOW(jobject, PeerGathering_iceGatheringState)(JNIEnv* jni, jobject j_pc) {
JOW(jobject, PeerConnection_iceGatheringState)(JNIEnv* jni, jobject j_pc) {
PeerConnectionInterface::IceGatheringState state =
ExtractNativePC(jni, j_pc)->ice_gathering_state();
return JavaEnumFromIndex(jni, "PeerGathering$IceGatheringState", state);
return JavaEnumFromIndex(jni, "PeerConnection$IceGatheringState", state);
}
JOW(void, PeerConnection_close)(JNIEnv* jni, jobject j_pc) {