summaryrefslogtreecommitdiff
path: root/chromium/third_party/webrtc/modules/utility/interface/helpers_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/webrtc/modules/utility/interface/helpers_android.h')
-rw-r--r--chromium/third_party/webrtc/modules/utility/interface/helpers_android.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/webrtc/modules/utility/interface/helpers_android.h b/chromium/third_party/webrtc/modules/utility/interface/helpers_android.h
index 19ff09869ef..5c73fe45662 100644
--- a/chromium/third_party/webrtc/modules/utility/interface/helpers_android.h
+++ b/chromium/third_party/webrtc/modules/utility/interface/helpers_android.h
@@ -16,8 +16,8 @@
// Abort the process if |jni| has a Java exception pending.
// TODO(henrika): merge with CHECK_JNI_EXCEPTION() in jni_helpers.h.
-#define CHECK_EXCEPTION(jni) \
- CHECK(!jni->ExceptionCheck()) \
+#define CHECK_EXCEPTION(jni) \
+ RTC_CHECK(!jni->ExceptionCheck()) \
<< (jni->ExceptionDescribe(), jni->ExceptionClear(), "")
namespace webrtc {
@@ -31,8 +31,8 @@ JNIEnv* GetEnv(JavaVM* jvm);
jlong PointerTojlong(void* ptr);
// JNIEnv-helper methods that wraps the API which uses the JNI interface
-// pointer (JNIEnv*). It allows us to CHECK success and that no Java exception
-// is thrown while calling the method.
+// pointer (JNIEnv*). It allows us to RTC_CHECK success and that no Java
+// exception is thrown while calling the method.
jmethodID GetMethodID(
JNIEnv* jni, jclass c, const char* name, const char* signature);