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

Unified Diff: webrtc/modules/video_coding/codecs/test/android_test_initializer.cc

Issue 3009613002: Android: Replace webrtc_jni namespace with nested jni namespace (Closed)
Patch Set: Rebase Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/codecs/test/android_test_initializer.cc
diff --git a/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc b/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc
index df1dd372d9ff69ad227c9e09248d37b59d5efea5..81942a15687152b0e9b434256f1c5c2ec4fa230b 100644
--- a/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc
+++ b/webrtc/modules/video_coding/codecs/test/android_test_initializer.cc
@@ -40,10 +40,10 @@ void EnsureInitializedOnce() {
JavaVM* jvm = NULL;
RTC_CHECK_EQ(0, jni->GetJavaVM(&jvm));
- jint ret = webrtc_jni::InitGlobalJniVariables(jvm);
+ jint ret = jni::InitGlobalJniVariables(jvm);
RTC_DCHECK_GE(ret, 0);
- webrtc_jni::LoadGlobalClassReferenceHolder();
+ jni::LoadGlobalClassReferenceHolder();
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698