Android classreferenceholder.h: Reorder function declaration keywords

It should be 'JNIEXPORT rettype JNICALL' not 'rettype JNIEXPORT JNICALL'.

BUG=webrtc:6660

Review-Url: https://codereview.webrtc.org/2557793003
Cr-Commit-Position: refs/heads/master@{#15467}
This commit is contained in:
magjed
2016-12-08 01:21:41 -08:00
committed by Commit bot
parent 7e1070df22
commit 06a6984935

View File

@ -33,8 +33,8 @@ jclass FindClass(JNIEnv* jni, const char* name);
// Convenience macro defining JNI-accessible methods in the org.webrtc package.
// Eliminates unnecessary boilerplate and line-wraps, reducing visual clutter.
#define JOW(rettype, name) extern "C" rettype JNIEXPORT JNICALL \
Java_org_webrtc_##name
#define JOW(rettype, name) \
extern "C" JNIEXPORT rettype JNICALL Java_org_webrtc_##name
} // namespace webrtc_jni